mirror of
https://github.com/irmen/prog8.git
synced 2024-11-29 01:49:22 +00:00
26 lines
185 B
Plaintext
26 lines
185 B
Plaintext
|
%zp full
|
||
|
%address 33
|
||
|
|
||
|
~ extra {
|
||
|
; this is imported
|
||
|
|
||
|
X = 42
|
||
|
return 44
|
||
|
}
|
||
|
|
||
|
~ extra2 {
|
||
|
; this is imported
|
||
|
|
||
|
X = 42
|
||
|
return 44
|
||
|
}
|
||
|
|
||
|
|
||
|
~ main {
|
||
|
; this is imported
|
||
|
|
||
|
X = 42
|
||
|
return 44
|
||
|
}
|
||
|
|