[gamecode] Fix some more operand formats

With and relative branches.
This commit is contained in:
Bill Currie 2022-01-06 22:27:09 +09:00
parent 0d9294d541
commit 1cb35b1fe3

View file

@ -43,7 +43,7 @@ load_fmt = [
"*(%Ga + %Gb), %gc",
]
branch_fmt = [
"branch %sa (%Ob)",
"branch %sa (%Oa)",
"*%Ga",
"%Ga[%sb]",
"%Ga[%Gb]",
@ -490,7 +490,7 @@ with_formats = {
"opcode": "OP_WITH",
"mnemonic": "with",
"opname": "with",
"format": "%sa, %sb, $sc",
"format": "%sa, %sb, %sc",
"widths": "0, 0, 0",
"types": "ev_void, ev_void, ev_void",
}