mirror of
https://github.com/KarolS/millfork.git
synced 2024-12-24 15:29:23 +00:00
63ff28e94e
* non-asm macros can now take `const` and `call` parameters * register parameters to asm functions and macros can be given names if annotated explicitly
13 lines
292 B
Plaintext
13 lines
292 B
Plaintext
|
|
#if not(APPLE_2)
|
|
#warn apple2_kernel module should be used only on Apple II-compatible targets
|
|
#endif
|
|
|
|
array hires_page_1 [$2000] @$2000
|
|
array hires_page_2 [$2000] @$4000
|
|
|
|
asm void bell() @$FBE4 extern
|
|
|
|
asm void putchar(byte register(a) char) @$FDED extern
|
|
asm void new_line() @$FC62 extern
|