prog8/examples/test.p8

24 lines
421 B
Plaintext
Raw Normal View History

%import textio
%import diskio
%zeropage basicsafe
2022-03-13 11:52:12 +00:00
main {
2022-08-07 11:45:03 +00:00
sub start() {
romsub $5000 = external_command() -> ubyte @R15
ubyte @shared result = external_command()
}
; sub start2() {
; ubyte[] arr = [1,2,3,4]
; uword pointer
; ubyte ix
;
; arr[ix] = arr[ix]+1
;
;; arr[3] = arr[3]+1
;; pointer[3] = pointer[3]+1
;
; txt.print_ub(arr[3])
; }
}