4. Here is a partial list of OpCodes for a simple computer (like MARIE): (20 points) Hex 1 2 3 4 7 OpCode 0001 0010 0011
Posted: Sat May 14, 2022 6:48 pm
4. Here is a partial list of OpCodes for a simple computer (like MARIE): (20 points) Hex 1 2 3 4 7 OpCode 0001 0010 0011 0100 0111 Meaning Load AC from memory Store AC to memory Add to AC from memory Subtract from AC from memory Halt program execution Assembly Language Command Load x Storex Add x Subtx Halt a. What does the following assembly language program accomplish? 200 201 202 203 204 205 500 501 502 503 Load 500 Add 500 Add 500 Add 500 Store 503 Halt 0003 0000 0000 0000 b. After running the program, what will be the final value stored at address 503 in Hexadecimal ?