wires

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

export fn main(dt_addr: u32) void {
    mini_uart.enable();
    mini_uart.print("meow\n0x{x}\n", .{dt_addr});

    while (true) {}
}