diff options
author | Marvin Borner | 2021-02-28 13:40:45 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-28 13:40:45 +0100 |
commit | d50d3aeaaeaca4a75a807759a54d1d6ae8b5bce4 (patch) | |
tree | 5d606caef5599ef8a5c1383560202ca9b89b681e /boot | |
parent | 2a2f12c64a99749b05507d80ba3ee728d5ed76e1 (diff) |
Fixed memory mapping detection
Diffstat (limited to 'boot')
-rw-r--r-- | boot/entry.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/entry.asm b/boot/entry.asm index 452de01..7285fb8 100644 --- a/boot/entry.asm +++ b/boot/entry.asm @@ -71,7 +71,7 @@ %define VESA_LFB_FLAG 0x4000 ; Enable LFB flag ; MMAP constants -%define MMAP_START 0x400 ; Starts at 0x400, ends at 0x500 +%define MMAP_START 0x500 ; Starts at 0x500, ends at 0x600 %define MMAP_SIZE 0x18 ; Struct size %define MMAP_SIG 0x0534d4150 ; Signature ("SMAP") %define MMAP_BIOS_MAGIC 0xe820 ; BIOS int 15h code to get address map |