summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-09-13 16:53:18 -0400
committerIan Moffett <ian@osmora.org>2025-09-13 16:53:18 -0400
commitfe63febc6fea46e9f1cee911037a493c53fa0883 (patch)
tree31034910bae3ddfafa9eab5c64237b70bcbbf2ed
parentef5fa4b6837e75571d8e76bd218070199d296fce (diff)
sys/i386: locore: Add fbtag and endtag
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r--src/sys/arch/i386/locore.S15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/sys/arch/i386/locore.S b/src/sys/arch/i386/locore.S
index 5cbdbc2..e448fc8 100644
--- a/src/sys/arch/i386/locore.S
+++ b/src/sys/arch/i386/locore.S
@@ -12,6 +12,21 @@ hdr_start:
.long CHECKSUM
hdr_end:
+fbtag_start:
+ .word 5 // Type
+ .word 1 // Flags
+ .long fbtag_end - fbtag_start // Length
+ .long 800 // Width
+ .long 600 // Height
+ .long 32 // Depth
+fbtag_end:
+
+.align 8
+endtag:
+ .word 0
+ .word 0
+ .word 8
+
.text
.code32
.globl _start