2024-07-06 13:19:35 +00:00
|
|
|
;; File: bootinfo.inc
|
|
|
|
|
|
|
|
;; Struct: BootInfoRange
|
|
|
|
struc BootInfoRange {
|
|
|
|
.base dd ?
|
|
|
|
.length dd ?
|
|
|
|
}
|
|
|
|
|
|
|
|
;; Struct: BootInfo
|
|
|
|
;;
|
|
|
|
;; StupidOS boot protocol structure
|
|
|
|
struc BootInfo {
|
|
|
|
.mmap dd 4*2*20 dup(0)
|
|
|
|
.kernel_start dd ?
|
|
|
|
.kernel_size dd ?
|
2024-07-09 08:35:47 +00:00
|
|
|
.high_mem dd ?
|
2024-07-06 13:19:35 +00:00
|
|
|
}
|
2024-07-07 09:24:51 +00:00
|
|
|
virtual at 0
|
|
|
|
BootInfo BootInfo
|
|
|
|
sizeof.BootInfo:
|
|
|
|
end virtual
|