mirror of
https://github.com/irmen/prog8.git
synced 2024-12-02 07:49:27 +00:00
26 lines
197 B
Plaintext
26 lines
197 B
Plaintext
%zeropage full
|
|
%address 33
|
|
|
|
~ extra3 {
|
|
; this is imported
|
|
|
|
X = 42
|
|
return 44
|
|
}
|
|
|
|
~ extra233 {
|
|
; this is imported
|
|
|
|
X = 42
|
|
return 44
|
|
}
|
|
|
|
|
|
~ mainzzz {
|
|
; this is imported
|
|
|
|
X = 42
|
|
return 44
|
|
}
|
|
|