1
0
mirror of https://github.com/KarolS/millfork.git synced 2026-04-20 18:16:35 +00:00

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
This commit is contained in:
Karol Stasiak
2020-03-30 19:23:48 +02:00
parent 5cdc599b1d
commit 63ff28e94e
50 changed files with 465 additions and 191 deletions
+1 -1
View File
@@ -8,5 +8,5 @@ array hires_page_2 [$2000] @$4000
asm void bell() @$FBE4 extern
asm void putchar(byte a) @$FDED extern
asm void putchar(byte register(a) char) @$FDED extern
asm void new_line() @$FC62 extern