convert MBR, VBR, & Stage2 to use a BSS section. #3

Merged
Nivirx merged 25 commits from bss-setup into trunk 2024-10-13 18:05:19 -04:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 83aa7d1147 - Show all commits

View File

@@ -36,7 +36,7 @@ nop
%include "cdecl16.inc"
%include "entry.inc"
%include "config.inc"
%include "mem.inc"
%include "early_mem.inc"
%include "error_codes.inc"
%include "partition_table.inc"
@@ -136,7 +136,7 @@ main:
push ax
mov ax, DiskSig ; start of partition table
push ax
mov ax, partition_table ; defined in memory.inc
mov ax, partition_table ; defined in early_mem.inc
push ax
call kmemcpy ; copy partition table to memory
add sp, 0x6

View File

@@ -47,7 +47,7 @@ times 54 db 0x00
%include "cdecl16.inc"
%include "entry.inc"
%include "config.inc"
%include "mem.inc"
%include "early_mem.inc"
%include "error_codes.inc"
%include "fat32/bpb_offset_bx.inc"