diff options
Diffstat (limited to 'rt')
| -rw-r--r-- | rt/abort.ha | 4 | ||||
| -rw-r--r-- | rt/hare.sc | 2 |
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(); +}; @@ -21,7 +21,7 @@ SECTIONS { _p1 = .; . += 4096; _ws = .; - . += 512; + . += 4096; . = 0x7c00; stack_top = .; |
