Variables and Registers
You can interactively display and change variables, registers, and memory locations from the command window. For example, you can type the following text commands at the command prompt:
| Text | Effect |
|---|
| R7 = 12 | Assign the value 12 to register R7. |
| CPSR | Display the CPSR register. |
| time.hour | Displays the member hour of the time structure. |
| time.hour++ | Increments the member hour of the time structure. |
| index = 0 | Assigns the value 0 to index. |