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,7 +8,7 @@ import c64_kernal
import err
// print a 16-bit number on the standard output
asm void putword_basic(word xa) @$BDCD extern
asm void putword_basic(word register(xa) num) @$BDCD extern
alias putword = putword_basic!