From f529a3b0f8ee24229997e995021a2ee8cb25f065 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 5 Oct 2024 12:13:49 -0400 Subject: initial commit --- src/main.zig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/main.zig (limited to 'src/main.zig') diff --git a/src/main.zig b/src/main.zig new file mode 100644 index 0000000..de602dd --- /dev/null +++ b/src/main.zig @@ -0,0 +1,13 @@ +//! By convention, main.zig is where your main function lives in the case that +//! you are building an executable. If you are making a library, the convention +//! is to delete this file and start with root.zig instead. +//const std = @import("std"); + +export fn _start() callconv(.C) noreturn { + while (true) {} +} + +export fn fault_handler() callconv(.C) void { + while (true) {} +} + -- cgit v1.2.3