prog8/examples/test.p8

15 lines
280 B
Plaintext
Raw Normal View History

2022-05-19 20:08:22 +00:00
%zeropage dontuse
2022-03-13 11:52:12 +00:00
; NOTE: meant to test to virtual machine output target (use -target vitual)
2021-10-30 13:15:11 +00:00
main {
2022-05-17 16:53:18 +00:00
sub start() {
2022-05-20 17:43:21 +00:00
ubyte @shared xx = 11
uword addr = $5000
@(addr) = @(addr) + xx
xx = xx ^ 44
xx = xx | 44
xx = xx & 44
2022-03-04 21:26:46 +00:00
}
2022-02-17 23:40:31 +00:00
}