From 152db2ae5fb548c6563f62993041f01496a2eb92 Mon Sep 17 00:00:00 2001 From: Matt Knight Date: Sat, 12 Feb 2022 14:06:34 -0800 Subject: [PATCH] no need to make the interrupt the .Naked calling convention (#15) --- tests/interrupt.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/interrupt.zig b/tests/interrupt.zig index 33a3e63..9406a8e 100644 --- a/tests/interrupt.zig +++ b/tests/interrupt.zig @@ -6,7 +6,7 @@ const micro = @import("microzig"); pub const panic = micro.panic; pub const vector_table = struct { - pub fn systick() callconv(.Naked) void { + pub fn systick() void { @panic("hit systick!"); } };