From fe63febc6fea46e9f1cee911037a493c53fa0883 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sat, 13 Sep 2025 16:53:18 -0400 Subject: sys/i386: locore: Add fbtag and endtag Signed-off-by: Ian Moffett --- src/sys/arch/i386/locore.S | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/sys') 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 -- cgit v1.2.3