diff options
| author | Marin Ivanov <[email protected]> | 2024-05-01 09:21:50 +0300 |
|---|---|---|
| committer | Marin Ivanov <[email protected]> | 2024-05-01 09:22:37 +0300 |
| commit | eb872393d03d252016b31895114757c0142a5a55 (patch) | |
| tree | bfa89a85f8b3896983d975649c60cae117a1137e | |
| parent | 4c6c36bdbda2e7475c25f6053c5914e15858c223 (diff) | |
wip: add debug messages to kmain
| -rw-r--r-- | src/main.zig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.zig b/src/main.zig index ac2376e..a43e63a 100644 --- a/src/main.zig +++ b/src/main.zig @@ -63,6 +63,9 @@ export fn _start() callconv(.C) noreturn { } export fn kmain() void { + outb(0xe9, '^'); console.initialize(); console.puts("Hello world!"); + outb(0xe9, '$'); + outb(0xe9, '\n'); } |
