prog8/examples/test.p8

60 lines
1.1 KiB
Plaintext
Raw Normal View History

%import textio
%import floats
%zeropage basicsafe
2020-08-27 17:47:50 +00:00
main {
2020-10-09 20:47:42 +00:00
sub start() {
2020-11-09 22:57:50 +00:00
2020-11-15 17:04:54 +00:00
float f = 1.1
float[] farr = [2.2, 3.3]
2020-11-15 17:04:54 +00:00
floats.print_f(f)
txt.chrout('\n')
floats.print_f(farr[0])
txt.chrout(',')
floats.print_f(farr[1])
txt.chrout('\n')
2020-11-15 17:04:54 +00:00
swap(f, farr[1])
floats.print_f(f)
txt.chrout('\n')
2020-11-15 17:04:54 +00:00
floats.print_f(farr[0])
txt.chrout(',')
floats.print_f(farr[1])
txt.chrout('\n')
2020-11-09 22:57:50 +00:00
testX()
}
asmsub testX() {
%asm {{
stx _saveX
lda #13
jsr txt.chrout
lda #'x'
jsr txt.chrout
lda #'='
jsr txt.chrout
lda _saveX
jsr txt.print_ub
lda #' '
jsr txt.chrout
lda #'s'
jsr txt.chrout
lda #'p'
jsr txt.chrout
lda #'='
jsr txt.chrout
tsx
txa
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
}