prog8/il65/examples/imported2.ill
Irmen de Jong 8ef61ffc88 various syntax checks added
first steps code generation
2018-09-08 00:07:25 +02:00

42 lines
454 B
Plaintext

%zeropage full
%address 33
~ extra3 {
; this is imported
X = 42
return 44
}
~ extra233 {
; this is imported
const byte snerp=33
const byte snerp2 = snerp+22
X = 42+snerp
;return 44+snerp
return
sub foo234234() -> () {
A=99+snerp
;return A+snerp2
return
}
sub thingy()->() {
;return 99
return
}
}
~ mainzzz {
; this is imported
X = 42
;return 44
return
}