tomaz / zx-next-dev-guide

Guide for ZX Spectrum Next assembler developer. Available as free to download PDF from releases page, or printed coil bound book at https://bit.ly/zx-next-assembler-dev-guide

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

ttahsin-bey opened this issue · 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!