Better separation on BSS if it grws or something
This commit is contained in:
parent
e9b363221a
commit
8709de5747
1 changed files with 4 additions and 3 deletions
|
@ -17,8 +17,8 @@ multiboot:
|
|||
dd MB_CHECKSUM
|
||||
dd multiboot ; header address
|
||||
dd 0x100000 ; load address
|
||||
dd bss ; load end address
|
||||
dd stack_top ; bss end address
|
||||
dd bss_start ; load end address
|
||||
dd bss_end ; bss end address
|
||||
dd start ; entry address
|
||||
dd 0 ; video mode_type (0:fb, 1:txt) (set flags[2]!)
|
||||
dd 1024 ; video width
|
||||
|
@ -153,7 +153,7 @@ stuff:
|
|||
.fbdimensionsmsgpfx db 10, "Framebuffer dimensions: ", 0
|
||||
.x db "x", 0
|
||||
|
||||
bss:
|
||||
bss_start:
|
||||
align 4096
|
||||
pagedir:
|
||||
rb 4096
|
||||
|
@ -164,3 +164,4 @@ align 4096
|
|||
stack_bottom:
|
||||
rb 16384
|
||||
stack_top:
|
||||
bss_end:
|
||||
|
|
Loading…
Reference in a new issue