Hello there, I asked around and apparently this is not a feature, yet.
Some older CPUs expect specific interrupt handlers to be at very specific addresses. In order to have instructions at these handler addresses, you can set the address at which the following instructions will live in memory by defining a section.
In the example screenshot from tetris: The GameBoy VBlank interrupt always jumps to 0x40. The section ensures that the jump to the VBlank interrupt handler will always be at address 0x40, for example.
I have not yet found a way to make this happen with the ISA, however, the documentation also is incomplete as of now