diff options
| author | Michal Idziorek <m.i@gmx.at> | 2014-11-14 03:30:52 +0100 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2014-11-14 03:30:52 +0100 |
| commit | 03fb41e835ff4d10325351c1460e9445e4b572ca (patch) | |
| tree | f9438c664583e5a1be5339fb5cbfc9bcc1895453 /boot/stage2.asm | |
| parent | 51c9f5abe06571845191b31f7442370ccb26f83a (diff) | |
improving build system
Diffstat (limited to 'boot/stage2.asm')
| -rw-r--r-- | boot/stage2.asm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/boot/stage2.asm b/boot/stage2.asm index 6ac0fd1..0a3ee87 100644 --- a/boot/stage2.asm +++ b/boot/stage2.asm @@ -73,25 +73,25 @@ STR_PM: ; ;;lets put our temporary GDT (Global Descriptor Table) here ;;kernel should move this away -%include "boot/GDT.asm" +%include "GDT.asm" ; ;;include 16-bit real mode routines (print_string, disk_load, vesa_setup,check_a20) -%include "boot/disk_load_16.asm" +%include "disk_load_16.asm" ;%include "boot/check_a20_16.asm" -%include "boot/print_string_16.asm" -%include "boot/vesa_setup_16.asm" +%include "print_string_16.asm" +%include "vesa_setup_16.asm" ; ;;include our routines for switching to 32-bit protected mode -%include "boot/pm.asm" +%include "pm.asm" ;include some pm mode helpers -%include "boot/common_pm.asm" +%include "common_pm.asm" ; ; ; ;;get memory map routine -%include "boot/memmap.asm" +%include "memmap.asm" ; ;;;;;;;;; BOOT 16-bit real ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; |
