prog8/examples/test.p8

47 lines
902 B
Plaintext
Raw Normal View History

%import textio
%import conv
2020-09-27 20:05:44 +00:00
%zeropage basicsafe
2020-08-27 17:47:50 +00:00
main {
2020-10-15 21:57:37 +00:00
%option force_output
2020-10-09 20:47:42 +00:00
sub start() {
2020-10-15 21:57:37 +00:00
str hex1 = "aap2"
str hex2 = "aap1je"
str hex3 = "aap1JE"
str hex4 = "aap3333"
2020-10-15 21:57:37 +00:00
byte result
2020-10-16 16:11:25 +00:00
result = strcmp(hex1, hex1)
2020-10-15 21:57:37 +00:00
txt.print_b(result)
txt.chrout('\n')
2020-10-16 16:11:25 +00:00
result = strcmp(hex1, hex2)
2020-10-15 21:57:37 +00:00
txt.print_b(result)
txt.chrout('\n')
2020-10-16 16:11:25 +00:00
result = strcmp(hex1, hex3)
2020-10-15 21:57:37 +00:00
txt.print_b(result)
txt.chrout('\n')
2020-10-16 16:11:25 +00:00
result = strcmp(hex1, hex4)
2020-10-15 21:57:37 +00:00
txt.print_b(result)
txt.chrout('\n')
testX()
}
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
}