Convert the following binary program stored in the program m
Convert the following binary program stored in the program memory to the text program. Assume that the first 8 bits of a word is the high-address byte and that the last 8 bits of a word is the low-address byte.
| Address | Word |
| 0x200 | 0000-1111-0000-1111 |
| 0x201 | 0000-1110-0000-0111 |
| 0x202 | 0101-1100-1111-1111 |
| 0x203 | 0001-1100-1111-0111 |
| 0x204 | 0100-1111-0000-1111 |
| 0x205 | 1111-0011-1111-0111 |
| 0x206 | 1001-0101-0000-0001 |
Solution
| Address | Word | text |
| 0x200 | 0000-1111-0000-1111 | 0F0F |
| 0x201 | 0000-1110-0000-0111 | 0E07 |
| 0x202 | 0101-1100-1111-1111 | 5CFF |
| 0x203 | 0001-1100-1111-0111 | 1CF7 |
| 0x204 | 0100-1111-0000-1111 | 4F0F |
| 0x205 | 1111-0011-1111-0111 | F3F7 |
| 0x206 | 1001-0101-0000-0001 | 9501 |
