Tweaked Locations for compatibility with other bootloaders (such as PXE)
This commit is contained in:
parent
1eb7870810
commit
8633dc5677
2 changed files with 3 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
|||
use16
|
||||
org 0x7c00
|
||||
|
||||
compressed: equ 0x1000
|
||||
decompressed: equ 0x8000
|
||||
compressed: equ 0x7e00
|
||||
decompressed: equ 0x8E00
|
||||
|
||||
%include "decompress.asm" ; Decompress Code & Data
|
||||
jmp decompressed ; Jump to the decompressed Data, booting the actual Kernel
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
; This file contains the actual animation
|
||||
use16
|
||||
org 0x8000
|
||||
org 0x8E00
|
||||
|
||||
%include "setup.asm"
|
||||
%include "macros.asm"
|
||||
|
|
Reference in a new issue