This laboratory exercise provides practice with machine and assembly language instructions.
ADD R2 R1 R0
(It may help to add some formatting spaces to help you parse the code. Start at the left and work your way to the right.)1000001001001010
HALT
instruction in memory location 2.
HALT
instruction? How would the control unit react?
BREZ RR MMMMMwhich means, if register RR is equal to zero, set the program counter to the memory address MMMMM. That is, "BRanch if Equal to Zero." Then you could exhibit looping behavior you've seen in Python programs.