diff options
author | pommicket <pommicket@gmail.com> | 2022-01-06 13:13:12 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-01-06 13:13:12 -0500 |
commit | b66a2dbe6b87e75fbb54beda05c00c9f13f84f2c (patch) | |
tree | c48aa771a55920716a9d6b2415ef699a50a9e763 /04b/in04b | |
parent | a415ec31c095b89b7867d61425e9211fceaf7a42 (diff) |
function calls
Diffstat (limited to '04b/in04b')
-rw-r--r-- | 04b/in04b | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -14,7 +14,6 @@ ; return <rvalue> ; string <str> ; byte <number> -; reserve <number> ; term: ; <var> ; .<label> @@ -44,7 +43,7 @@ ; <term> < <term> (left shift) ; <term> > <term> (unsigned right shift) -main() ; hello +main(46) ; hello global x global y ;123 @@ -54,7 +53,8 @@ function local eee local fff local ggg - return *2fff + return test2(eee, 0x223, ggg) + :test2 function return -123 @@ -99,7 +99,7 @@ function :main function - puts(str_hello_world) + puts(.str_hello_world) syscall(0x3c, 0) :str_hello_world string Hello, world! |