Cleanup commas in .macro

This commit is contained in:
Martin Griffin
2026-06-17 11:27:36 +01:00
parent 8a702fb8fd
commit 167b05f2a7
2 changed files with 2 additions and 2 deletions

View File

@@ -301,7 +301,7 @@
@
@ implicit is set when a waitstate is generated as part of another command (e.g. special)
@ if an implicit waitstate is immediately followed by another waitstate, a warning is raised
.macro waitstate, implicit=0
.macro waitstate implicit=0
.if _last_implicit_waitstate == .
.warning "explicit waitstate follows implicit waitstate, ignoring"
.else

View File

@@ -1,6 +1,6 @@
.ifndef SCRIPT_CMD_TABLE_ENTRY_MACRO
.set SCRIPT_CMD_TABLE_ENTRY_MACRO, 1
.macro script_cmd_table_entry constant:req value:req
.macro script_cmd_table_entry constant:req, value:req
.if ALLOCATE_SCRIPT_CMD_TABLE
.4byte \value
.else