2020-09-20 21:49:36 +00:00
|
|
|
%import textio
|
2020-10-15 20:15:00 +00:00
|
|
|
%import conv
|
2020-09-27 20:05:44 +00:00
|
|
|
%zeropage basicsafe
|
2020-08-27 17:47:50 +00:00
|
|
|
|
2020-09-24 17:26:07 +00:00
|
|
|
main {
|
2020-10-15 21:57:37 +00:00
|
|
|
%option force_output
|
2020-09-28 00:23:36 +00:00
|
|
|
|
2020-10-09 20:47:42 +00:00
|
|
|
sub start() {
|
2020-10-13 23:17:18 +00:00
|
|
|
|
2020-10-15 21:57:37 +00:00
|
|
|
str hex1 = "aap2"
|
|
|
|
str hex2 = "aap1je"
|
|
|
|
str hex3 = "aap1JE"
|
|
|
|
str hex4 = "aap3333"
|
2020-10-15 20:41:29 +00:00
|
|
|
|
2020-10-15 21:57:37 +00:00
|
|
|
byte result
|
2020-10-15 23:12:20 +00:00
|
|
|
result = prog8_lib.strcmp(hex1, hex1)
|
2020-10-15 21:57:37 +00:00
|
|
|
txt.print_b(result)
|
2020-10-15 20:41:29 +00:00
|
|
|
txt.chrout('\n')
|
2020-10-15 23:12:20 +00:00
|
|
|
result = prog8_lib.strcmp(hex1, hex2)
|
2020-10-15 21:57:37 +00:00
|
|
|
txt.print_b(result)
|
2020-10-15 20:41:29 +00:00
|
|
|
txt.chrout('\n')
|
2020-10-15 23:12:20 +00:00
|
|
|
result = prog8_lib.strcmp(hex1, hex3)
|
2020-10-15 21:57:37 +00:00
|
|
|
txt.print_b(result)
|
2020-10-15 20:41:29 +00:00
|
|
|
txt.chrout('\n')
|
2020-10-15 23:12:20 +00:00
|
|
|
result = prog8_lib.strcmp(hex1, hex4)
|
2020-10-15 21:57:37 +00:00
|
|
|
txt.print_b(result)
|
2020-10-15 20:41:29 +00:00
|
|
|
txt.chrout('\n')
|
2020-10-15 20:15:00 +00:00
|
|
|
|
2020-10-14 20:33:49 +00:00
|
|
|
testX()
|
2020-10-11 11:31:45 +00:00
|
|
|
}
|
|
|
|
|
2020-10-01 22:34:12 +00:00
|
|
|
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
|
|
|
}
|