This commit is contained in:
Nils Polek
2023-12-09 23:43:33 +01:00
parent 8be99c5244
commit 82dc5f28cc
6 changed files with 34 additions and 3 deletions

28
programs/prog02.asm Normal file
View File

@@ -0,0 +1,28 @@
//
// prog02.asm -- call/ret with args, but without ret value
//
asf 3
pushc 11
pushc 33
call proc
drop 2
rsf
halt
proc:
asf 2
pushl -4
wrint
pushc '\n'
wrchr
pushc 22
wrint
pushc '\n'
wrchr
pushl -3
wrint
pushc '\n'
wrchr
rsf
ret

BIN
programs/prog02.bin Normal file

Binary file not shown.

Binary file not shown.

View File

@@ -10,7 +10,7 @@
halt
proc:
asf 0
asf 1
pushc '\n'
wrchr
rsf

Binary file not shown.