Skip to content

Commit

Permalink
make compile with 0.7.1 and change message
Browse files Browse the repository at this point in the history
  • Loading branch information
g-w1 authored and andrewrk committed Mar 10, 2021
1 parent 00bc17b commit 68efb19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -5,7 +5,7 @@ Bare bones "hello world" i386 kernel written in [Zig](https://ziglang.org/).
## Building

```
zig build-exe hellos.zig -target i386-freestanding --linker-script linker.ld
zig build-exe hellos.zig -target i386-freestanding -T linker.ld
```

## Testing with qemu
Expand Down
2 changes: 1 addition & 1 deletion hellos.zig
Expand Up @@ -35,7 +35,7 @@ pub fn panic(msg: []const u8, error_return_trace: ?*builtin.StackTrace) noreturn

fn kmain() void {
terminal.initialize();
terminal.write("Hello, Kernel World from Zig 0.6.0!");
terminal.write("Hello, Kernel World from Zig 0.7.1!");
}

// Hardware text mode color constants
Expand Down

0 comments on commit 68efb19

Please sign in to comment.