Commit 63dd53

2026-06-02 12:22:40 Bob Green: -/-
programming/runtime.md ..
@@ 4,4 4,5 @@
| Address | Size | Comment |
| ------- | ------- | ------- |
- | 0x003ffe | ~256k | Stack (SSP). Grows towards 0. At round about 0x0000400 it would start stomping all over the memory area used by the monitor |
+ | 0x00fffe | ~256k | Stack (SSP). Grows towards 0. At round about 0x0000400 it would start stomping all over the memory area used by the monitor |
+ | 0x040000 | n/a | Start of user program (.text), followed by initialised data (.data) and then unititialised data (.bss). The .bss area is initialised to all zeroes before main() is called. |
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9