changed the macro args to start from 0

This commit is contained in:
igor
2026-02-18 09:45:13 +01:00
parent 9732f0e74a
commit 28bc0e3842
3 changed files with 6 additions and 6 deletions

View File

@@ -13,14 +13,14 @@ macro square
;
macro defconst 2
word $1
$2
word $0
$1
end
;
macro defadder 3
word $1
$2 $3 +
word $0
$1 $2 +
end
;