prog8/examples/test.p8

55 lines
786 B
Plaintext
Raw Normal View History

%import textio
2020-09-27 11:31:46 +00:00
%import syslib
2020-09-27 20:05:44 +00:00
%zeropage basicsafe
2020-08-27 17:47:50 +00:00
main {
2020-10-09 20:47:42 +00:00
sub start() {
2020-10-09 19:01:06 +00:00
2020-10-09 20:47:42 +00:00
repeat 0 {
txt.print("repeat0\n")
}
2020-10-09 19:01:06 +00:00
2020-10-09 20:47:42 +00:00
repeat 2 {
txt.print("repeat2\n")
}
2020-09-29 01:58:17 +00:00
2020-10-09 20:47:42 +00:00
ubyte u=3
repeat u-1 {
txt.print("repeat u=2\n")
}
u=2
repeat u-1 {
txt.print("repeat u=1\n")
}
u=1
repeat u-1 {
txt.print("repeat u=0\n")
}
txt.chrout('\n')
}
asmsub testX() {
%asm {{
stx _saveX
lda #13
jsr txt.chrout
lda _saveX
jsr txt.print_ub
lda #13
jsr txt.chrout
ldx _saveX
rts
_saveX .byte 0
}}
2020-09-16 21:04:18 +00:00
}
2020-08-27 17:47:50 +00:00
}
2020-10-03 13:11:09 +00:00