1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-30 21:29:36 +00:00
millfork/include/apple2_kernel.mfk
Karol Stasiak 63ff28e94e Changes to macros and parameter list syntax:
* non-asm macros can now take `const` and `call` parameters
* register parameters to asm functions and macros can be given names if annotated explicitly
2020-03-30 19:23:48 +02:00

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