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 ```