aboutsummaryrefslogtreecommitdiff
path: root/mirai.old/boot/multiboot/types.zig
blob: 9da2650265bda5183cf50472290926e5d95a328a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Multiboot type definitions

pub const MemoryEntry = struct {
    base: u64,
    length: u64,
    entry_type: u32,
};

pub const FramebufferInfo = struct {
    addr: u64,
    pitch: u32,
    width: u32,
    height: u32,
    bpp: u8,
    framebuffer_type: u8,
};