diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-12-23 22:51:52 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-02-07 21:54:55 +0100 |
commit | 0d857026c43ce887196c84c7d722c2e81cc8dacf (patch) | |
tree | 3a18adf457c3ed7c840101636a806517a48978e4 /x86-bare-metal/mbr-palette/zmbr.zig | |
parent | b0cf4477140aff5c198544dbff2cfe28770e0083 (diff) | |
download | zig-playground-0d857026c43ce887196c84c7d722c2e81cc8dacf.tar.gz zig-playground-0d857026c43ce887196c84c7d722c2e81cc8dacf.zip |
mbr: rm->pm, then jump into zig
Diffstat (limited to 'x86-bare-metal/mbr-palette/zmbr.zig')
-rw-r--r-- | x86-bare-metal/mbr-palette/zmbr.zig | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/x86-bare-metal/mbr-palette/zmbr.zig b/x86-bare-metal/mbr-palette/zmbr.zig new file mode 100644 index 0000000..947cd06 --- /dev/null +++ b/x86-bare-metal/mbr-palette/zmbr.zig @@ -0,0 +1,29 @@ +const COLS = 320; +const ROWS = 200; + +/// Draw the color palette. +/// One color per column, remaining columns are drawn black. +fn draw_palette(video: []u8) void { + for (0..ROWS) |r| { + for (0..COLS) |c| { + if (c < 256) { + video[COLS * r + c] = @truncate(c); + } else { + video[COLS * r + c] = 0; + } + } + } +} + +// kmain should be "callconv(.naked)", once issue is fixed. +// https://github.com/ziglang/zig/issues/18183 +export fn kmain() noreturn { + // Take a slice to 256-color VGA video memory (mode 13h graphic mode). + const video: []u8 = @as([*]u8, @ptrFromInt(0xA0000))[0 .. COLS * ROWS]; + + draw_palette(video); + + while (true) { + asm volatile ("hlt"); + } +} |