2020-09-20 23:49:36 +02:00
|
|
|
%import textio
|
2020-09-27 13:31:46 +02:00
|
|
|
%import syslib
|
2020-09-27 22:05:44 +02:00
|
|
|
%zeropage basicsafe
|
2020-09-05 02:05:28 +02:00
|
|
|
|
2020-08-27 19:47:50 +02:00
|
|
|
|
2020-09-24 19:26:07 +02:00
|
|
|
main {
|
2020-09-28 02:23:36 +02:00
|
|
|
|
2020-10-04 17:47:57 +02:00
|
|
|
str planet_name = "12345678"
|
2020-09-27 13:31:46 +02:00
|
|
|
sub start() {
|
2020-09-29 03:58:17 +02:00
|
|
|
|
2020-10-04 18:47:47 +02:00
|
|
|
; TODO : make str name=... work (although it's doing something else namely a strcpy)
|
|
|
|
|
|
|
|
txt.print(planet_name)
|
|
|
|
txt.chrout('\n')
|
2020-10-02 22:37:52 +02:00
|
|
|
|
2020-10-04 17:47:57 +02:00
|
|
|
planet_name = "saturn" ; TODO make strcpy() actually work it now sets the address in the first two bytes...
|
2020-10-02 22:37:52 +02:00
|
|
|
|
2020-10-04 17:47:57 +02:00
|
|
|
txt.print(planet_name)
|
2020-10-02 22:21:18 +02:00
|
|
|
txt.chrout('\n')
|
2020-10-04 18:47:47 +02:00
|
|
|
txt.print_ub(len(planet_name))
|
|
|
|
txt.chrout('\n')
|
|
|
|
txt.print_ub(strlen(planet_name))
|
|
|
|
txt.chrout('\n')
|
2020-10-02 00:34:12 +02:00
|
|
|
}
|
2020-09-28 02:23:36 +02:00
|
|
|
|
2020-10-02 00:34:12 +02: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 23:04:18 +02:00
|
|
|
}
|
2020-08-27 19:47:50 +02:00
|
|
|
}
|
2020-10-03 15:11:09 +02:00
|
|
|
|
|
|
|
|
|
|
|
|