What is wrong with this line of Lc3 code?
问题 I am doing a practice exam question. The Question is Is there anything wrong in this line of LC3 code? (The starred line) ADD R3, R3, 0; **BRNZ ISPOS;** HALT .BLKW 250 ISPOS NOT R3, R3 .... I saw that the starred line is Branch and the condition codes are negative and zero, basically go to label ISPOS if the condition code is negative or zero or halt the program otherwise. I would say that this line of LC3 code has nothing wrong with it. Does anyone see any problems with it? 回答1: Yes, there