]> Shamusworld >> Repos - rmac/blobdiff - riscasm.c
Version bump for last commit. :-)
[rmac] / riscasm.c
index c3bd88f19f1fd67408718a8579b8fd6c8c3ad696..3399b81bd061f3afd0fddc6cbd7f625eb1ce9ba0 100644 (file)
--- a/riscasm.c
+++ b/riscasm.c
@@ -190,6 +190,7 @@ static void DepositRISCInstructionWord(uint16_t opcode, int reg1, int reg2)
        }
 
        int value = ((opcode & 0x3F) << 10) + ((reg1 & 0x1F) << 5) + (reg2 & 0x1F);
+       GENLINENOSYM();
        D_word(value);
 }