Tweaked Locations for compatibility with other bootloaders (such as PXE)

This commit is contained in:
Leurak 2017-04-16 11:11:28 +02:00
parent 1eb7870810
commit 8633dc5677
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -1,6 +1,6 @@
; This file contains the actual animation
use16
org 0x8000
org 0x8E00
%include "setup.asm"
%include "macros.asm"