diff options
author | Marvin Borner | 2020-07-22 00:50:41 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-22 00:50:41 +0200 |
commit | 16604c4ea0ebe44f12741d3d6efed0dc1867204f (patch) | |
tree | 7560d30955b7619ca53b2b69b4bc8332054e37f5 /src/entry.asm | |
parent | a06e4d3a2e0c00210b54f5c060e90c8e5b425646 (diff) |
Okidoki, seems to work!
Diffstat (limited to 'src/entry.asm')
-rw-r--r-- | src/entry.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entry.asm b/src/entry.asm index 487e4b4..d17246d 100644 --- a/src/entry.asm +++ b/src/entry.asm @@ -51,7 +51,7 @@ %define A20_EXCLUDE_BIT 0xfe ; Bit 0 may be write-only, causing a crash ; GDT constants (bitmap) -%define GDT_MAX_LIMIT 0xffff +%define GDT_MAX_LIMIT 0xffff ; I just use the max limit lel %define GDT_PRESENT 0b10000000 ; Is present %define GDT_DESCRIPTOR 0b00010000 ; Descriptor type, set for code/data %define GDT_EXECUTABLE 0b00001000 ; Can be executed |