wires

summary refs log tree commit diff
path: root/src/main.zig
blob: 3ef9cad0f5d3ed18d0fb84f32858ec3bb80bca15 (plain) (blame)
1
2
3
4
5
6
7
8
const mini_uart = @import("mini_uart.zig");

export fn main() void {
    mini_uart.enable();
    mini_uart.writeString(" hello, world!\n");

    while (true) {}
}