prog8/examples/test.p8

57 lines
1.1 KiB
Plaintext
Raw Normal View History

%import textio
2020-09-27 11:31:46 +00:00
%import syslib
2020-09-29 01:58:17 +00:00
%import floats
2020-09-27 20:05:44 +00:00
%zeropage basicsafe
2020-08-27 17:47:50 +00:00
main {
struct Color {
ubyte red
ubyte green
ubyte blue
}
2020-09-28 22:28:11 +00:00
Color c1 = [11,22,33]
Color c2 = [11,22,33]
Color c3 = [11,22,33]
uword[] colors = [ c1, c2, c3]
2020-09-28 22:28:11 +00:00
2020-09-27 11:31:46 +00:00
sub start() {
2020-09-29 01:58:17 +00:00
txt.print_uwhex(&c1, true)
txt.chrout('\n')
txt.print_uwhex(&c2, true)
txt.chrout('\n')
txt.print_uwhex(&c3, true)
txt.chrout('\n')
txt.print_uwhex(colors[0], true)
txt.chrout('\n')
txt.print_uwhex(colors[1], true)
txt.chrout('\n')
txt.print_uwhex(colors[2], true)
txt.chrout('\n')
c1 = c2
c1 = [11,22,33] ; TODO implement rewrite into individual struct member assignments
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
}