prog8/il65/examples/imported.ill
Irmen de Jong 26a7a3c8d0 zeropage
2018-08-16 23:10:28 +02:00

38 lines
353 B
Plaintext

%zeropage full
%address 33
%option enable_floats
%option enable_floats
~ extra {
; this is imported
X = 42
return 44
}
~ extra2 {
; this is imported
X = 42
return 44
label_in_extra2:
X = 33
sub sub_in_extra2() -> () {
return
}
sub another_sub_in_extra2() -> () {
return
}
}
~ main2 {
; this is imported
X = 42
return 44
}