8 lines
257 B
Zig
8 lines
257 B
Zig
const boot_consts = @cImport({
|
|
@cInclude("boot.h");
|
|
});
|
|
|
|
pub const BOOT_HEAP_SIZE: usize = boot_consts.BOOT_HEAP_SIZE;
|
|
pub const BOOT_STACK_SIZE: usize = boot_consts.BOOT_STACK_SIZE;
|
|
pub const LOAD_PHYSICAL_ADDR: usize = boot_consts.LOAD_PHYSICAL_ADDR;
|