tomaz/zx-next-dev-guide

LSB instead of MSB used in description for "Hardware Interrupt Mode 2"

ttahsin-bey opened this issue · 1 comments

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!