mirror of
https://github.com/irmen/prog8.git
synced 2024-11-25 04:31:20 +00:00
32 lines
264 B
Plaintext
32 lines
264 B
Plaintext
%zeropage full
|
|
%address 33
|
|
|
|
~ extra3 {
|
|
; this is imported
|
|
|
|
X = 42
|
|
return 44
|
|
}
|
|
|
|
~ extra233 {
|
|
; this is imported
|
|
|
|
X = 42
|
|
return 44
|
|
|
|
sub foo() -> () {
|
|
A=99
|
|
return
|
|
}
|
|
|
|
}
|
|
|
|
|
|
~ mainzzz {
|
|
; this is imported
|
|
|
|
X = 42
|
|
return 44
|
|
}
|
|
|