diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-13 16:53:18 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-13 16:53:18 -0400 |
commit | fe63febc6fea46e9f1cee911037a493c53fa0883 (patch) | |
tree | 31034910bae3ddfafa9eab5c64237b70bcbbf2ed /src/sys/arch/i386/locore.S | |
parent | ef5fa4b6837e75571d8e76bd218070199d296fce (diff) |
sys/i386: locore: Add fbtag and endtag
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/arch/i386/locore.S')
-rw-r--r-- | src/sys/arch/i386/locore.S | 15 |
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 |