mirror of
https://github.com/irmen/prog8.git
synced 2024-11-08 14:07:32 +00:00
10 lines
135 B
Plaintext
10 lines
135 B
Plaintext
|
main {
|
||
|
sub start() {
|
||
|
stuff.do_nothing()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
stuff $1000 {
|
||
|
romsub $1000 = do_nothing()
|
||
|
%asmbinary "i_do_not_exist.bin", 0
|
||
|
}
|