fix operands list grammar rule

This commit is contained in:
omicron 2025-04-01 23:22:17 +02:00
parent da51d66bb2
commit 80957326bc

View File

@ -9,7 +9,7 @@
<instruction> ::= <identifier> <operands>
<operands> ::= <operand> ( <comma> <operands> )*
<operands> ::= <operand> ( <comma> <operand> )*
<operand> ::= <register> | <immediate> | <memory>