numbers that are stored in memory. Using the display style pop-up menu, you can select from six different interpretations: The Instructions display shows the contents of each memory location as an assembly language instruction. In this display style, you should see the original counting program in memory locations 0 through 5. Most of the other locations contain Add 0, which just happens to be the assembly language instruction encoded by the 16-bit binary number 0000000000000000. (Since not every 16-bit binary number corresponds to a legitimate assembly-language instruction, you might see some funny things in this display style.) The Integers and Unsigned Ints displays show ordinary decimal integers. The difference is that signed 16-bit integers are in the range -32768 to 32767, while unsigned 16-bit integers are in the range 0 to 65535. (In either case, there are 216 different possible values -- it's just a question of how they are interpreted. See Subsection 2.2
Press the SHIFT and then the MONTR Key to begin binary monitoring. The ON/OFF status of the selected word’s 16 bits will be shown along the bottom of the display. A 1 indicates a bit is on, and a 0 indicates it is off. c010 MONTR SHIFT MONTR 0000000000000000 Bit 15 Bit 00 The status of force-set bits is indicated by “S,” and the status of a force-reset bits is indicated by “R,” as shown below. c010 MONTR 000S0000000R0000