zx-next-dev-guide
zx-next-dev-guide copied to clipboard
LSB instead of MSB used in description for "Hardware Interrupt Mode 2"
Description states "... we assign the LSB of the vector table address to I register.".
The referencing code (which is correct) is loading A with the MSB instead:
LD A, InterruptVectorTable >> 8
LD I, A
Thanks, typo in text as you suggested!