aboutsummaryrefslogtreecommitdiffstats
path: root/src/ziggie.zig
blob: c6747b9aa79d3873c2b175f4a4db98103c0b1aa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
pub inline fn outb(port: u16, value: u8) void {
    asm volatile ("outb %[value], %[port]"
        :
        : [port] "N{dx}" (port),
          [value] "{al}" (value),
    );
}

const VGATerminal = struct {
    const width = 80;
    const height = 25;
    const vram: *[width * height]u16 = @ptrFromInt(0xB8000);

    offset: u16 = 0,
    foreground: u8 = 0x07,
    background: u8 = 0x00,

    pub fn put(self: *VGATerminal, ch: u8) void {
        const cell = ch
            | (@as(u16, self.foreground) << 8)
            | (@as(u16, self.background) << 12);

        vram[self.offset] = cell;
        self.offset += 1;
    }

    fn checkpos(self: *VGATerminal) void {
        if (self.offset >= width * height) {
            const onebefore = (width - 1) * height;
            @memcpy(vram, vram[width..onebefore]);
            @memset(vram[onebefore..], 0);
            self.offset = onebefore;
        }
    }

    pub fn updatecursor(self: VGATerminal) void {
        outb(0x03d4, 0x0f);
        _ = self;
    }
};

export fn zigit() void {
    var vga = VGATerminal{};
    vga.foreground = 0x0f;
    vga.put('H');
    vga.put('i');
    vga.updatecursor();
}