diff options
| author | Eugen Wissner <belka@caraus.de> | 2024-09-24 22:20:57 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2024-09-24 22:20:57 +0200 |
| commit | b30bbcab2892f9c41d6b1057eb09804e2d9be4e6 (patch) | |
| tree | bd6db707f8bef38be0ac967f170e0d822142422f /tools/builtin.s | |
| parent | e66ccf46f445f04fbbeb1b0bfb273b806d22f65b (diff) | |
| download | elna-b30bbcab2892f9c41d6b1057eb09804e2d9be4e6.tar.gz | |
Parse call statements
Diffstat (limited to 'tools/builtin.s')
| -rw-r--r-- | tools/builtin.s | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/builtin.s b/tools/builtin.s index 6274b2e..e75aaea 100644 --- a/tools/builtin.s +++ b/tools/builtin.s @@ -1,6 +1,3 @@ -.global main -.type main, @function - .global printi .type printi, @function @@ -35,7 +32,7 @@ printi: ret _start: - call "main" + call main addi a0, zero, 0 addi a7, zero, 93 ecall |
