diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-10-02 20:37:29 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-10-02 20:37:29 -0400 |
commit | 71eecf3849a47173247a083ff4a14c73bb509c89 (patch) | |
tree | 683b2e50194882b41d82851ee784fa2c9f34a422 /src | |
parent | 19d9a04e36e7fb96eebe89e24311408460c29a70 (diff) |
uh-oh I'm learning zig
Diffstat (limited to 'src')
-rw-r--r-- | src/kernel.cpp | 4 | ||||
-rw-r--r-- | src/memory.cpp | 23 | ||||
-rw-r--r-- | src/ziggie.zig | 49 |
3 files changed, 76 insertions, 0 deletions
diff --git a/src/kernel.cpp b/src/kernel.cpp index ae3f153..f881143 100644 --- a/src/kernel.cpp +++ b/src/kernel.cpp @@ -34,6 +34,8 @@ void ata_probe(auto bus, ATA::Drive drv, const char *name) } } +extern "C" void zigit(); + void kernel_main(void) { term.write("Clyne's kernel, v2024\n\n"); @@ -41,6 +43,8 @@ void kernel_main(void) if (!multiboot_initialize()) for (;;); + zigit(); + idt_register_callback(14, [](auto& regs) { term.write("Page fault! eip="); term.write(regs.eip); diff --git a/src/memory.cpp b/src/memory.cpp index 108c240..69c944a 100644 --- a/src/memory.cpp +++ b/src/memory.cpp @@ -105,3 +105,26 @@ void operator delete[](void *, std::size_t) } +extern "C" +void *memcpy(void *dst, const void *src, std::size_t sz) +{ + auto d = reinterpret_cast<char *>(dst); + auto s = reinterpret_cast<const char *>(src); + + while (sz--) + *d++ = *s++; + + return dst; +} + +extern "C" +void *memset(void *dst, int val, std::size_t sz) +{ + auto d = reinterpret_cast<char *>(dst); + + while (sz--) + *d++ = val; + + return dst; +} + diff --git a/src/ziggie.zig b/src/ziggie.zig new file mode 100644 index 0000000..c6747b9 --- /dev/null +++ b/src/ziggie.zig @@ -0,0 +1,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(); +} + |