diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-08-29 19:12:47 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-08-29 19:12:47 -0700 |
commit | 8306c084ade0878a5d9aa135f79382a77020488d (patch) | |
tree | 0ca060089be411a8a9d902d3d83928d67ed943f4 | |
parent | bd226ccb3ad94e3196ac10a0e70734293a38e52c (diff) | |
download | mu-8306c084ade0878a5d9aa135f79382a77020488d.tar.gz |
.
-rw-r--r-- | boot.subx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/boot.subx b/boot.subx index 7d4e174b..f061a716 100644 --- a/boot.subx +++ b/boot.subx @@ -15,9 +15,9 @@ # understand hardware interfaces well enough to explain to others. # Memory map of a Mu computer: -# code: some tracks loaded from primary disk to [0x00007c00, 0x00080000) -# stack: grows down from 0x02000000 to 0x01000000 -# heap: [0x02000000, 0x80000000) +# code: [0x00007c00, 0x0007de00) +# stack: (0x02000000, 0x01000000] +# heap: [0x02000000, 0x80000000) # see 120allocate.subx; Qemu initializes with 128MB RAM by default; simulating 2GB RAM is known to work # Consult https://wiki.osdev.org/Memory_Map_(x86) before modifying any of # this. And don't forget to keep *stack-debug.subx in sync. |