summaryrefslogtreecommitdiff
path: root/rt
diff options
context:
space:
mode:
Diffstat (limited to 'rt')
-rw-r--r--rt/abort.ha4
-rw-r--r--rt/hare.sc2
2 files changed, 5 insertions, 1 deletions
diff --git a/rt/abort.ha b/rt/abort.ha
index dbe5d76..798c26f 100644
--- a/rt/abort.ha
+++ b/rt/abort.ha
@@ -1,3 +1,7 @@
export @noreturn fn abort_fixed() void = {
halt();
};
+
+export @noreturn @symbol("rt.abort") fn abort_() void = {
+ halt();
+};
diff --git a/rt/hare.sc b/rt/hare.sc
index 3de964c..ac8c4c5 100644
--- a/rt/hare.sc
+++ b/rt/hare.sc
@@ -21,7 +21,7 @@ SECTIONS {
_p1 = .;
. += 4096;
_ws = .;
- . += 512;
+ . += 4096;
. = 0x7c00;
stack_top = .;