In the last post I described the micro-instructions that are to be executed to execute the SUBNEG instruction. Given below is the table I had posted previously: I realized later that it still might not be entirely clear as to how this was working so I have made a GIF of the same to better explain how the "Subtraction" instruction is executed. Pretty cool huh?.... no??? okay 😢 In The GIF it is assumed that the following data is stored in the RAM: Address Byte #0000 #32 [B(l)] #0001 #00 [B(h)] #0002 #33 [A(l)] #0003 #00 [A(h)] #0004 #20 [C(l)] #0005 #01 [C(h)] #0032 #07 [Data] #0033 #09 [Data] The next thing we need to do is try to optimize this process. In the above GIF you may or may...