Updated Random Access Memory (markdown)

Kevin Ramharak 2018-02-03 12:37:51 +01:00
parent b09044bd8c
commit cd834bc573

@ -11,4 +11,4 @@ The memory represented in a table would look like this:
| `0x0100 - 0x01FF` | Memory used by the [LiDAR](https://github.com/simon987/Much-Assembly-Required/wiki/Hardware:-LiDAR#interrupt-behavior) `GET_MAP` hardware interrupt behavior |
| `0x0200 - 0x0200 + PROGRAM_SIZE` | The instructions that make up your program |
| `...`| Not assigned to anything |
| `0x.... - 0xFFFF` | The start of your stack, pointed to by the BP Register at the start of your program. This grows towards `0x0000` |
| `0x.... - 0xFFFF` | The start of your stack, pointed to by the SP Register at the start of your program. This grows towards `0x0000` |