2020-09-20 21:49:36 +00:00
|
|
|
%import textio
|
2020-09-27 11:31:46 +00:00
|
|
|
%import syslib
|
2020-09-27 20:05:44 +00:00
|
|
|
%zeropage basicsafe
|
2020-09-05 00:05:28 +00:00
|
|
|
|
2020-08-27 17:47:50 +00:00
|
|
|
|
2020-09-24 17:26:07 +00:00
|
|
|
main {
|
2020-09-28 00:23:36 +00:00
|
|
|
|
2020-10-09 20:47:42 +00:00
|
|
|
sub start() {
|
2020-10-09 19:01:06 +00:00
|
|
|
|
2020-10-10 14:21:51 +00:00
|
|
|
; TODO fix multi- string concatenation:
|
2020-10-10 21:24:05 +00:00
|
|
|
; txt.print("\nCommands are:\n"+
|
|
|
|
; "buy jump inf cash\n" +
|
|
|
|
; "sell teleport market hold\n" +
|
|
|
|
; "fuel galhyp local quit\n")
|
|
|
|
|
|
|
|
str name = "irmen de jong"
|
|
|
|
uword strptr = &name
|
|
|
|
|
|
|
|
|
|
|
|
txt.print_ub(strlen("1234"))
|
|
|
|
txt.chrout('\n')
|
|
|
|
txt.print_ub(strlen(name))
|
|
|
|
txt.chrout('\n')
|
|
|
|
txt.print_uwhex(strptr, 1)
|
|
|
|
txt.chrout('\n')
|
|
|
|
txt.print(strptr)
|
|
|
|
txt.chrout('\n')
|
|
|
|
txt.print_ub(strlen(strptr))
|
|
|
|
txt.chrout('\n')
|
2020-10-10 13:39:48 +00:00
|
|
|
|
|
|
|
|
2020-10-01 22:34:12 +00:00
|
|
|
}
|
2020-09-28 00:23:36 +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
|
|
|
}
|
2020-10-03 13:11:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
|