X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=riscasm.c;h=3399b81bd061f3afd0fddc6cbd7f625eb1ce9ba0;hp=c3bd88f19f1fd67408718a8579b8fd6c8c3ad696;hb=HEAD;hpb=e4747b998a04025ea409316ff23cf3b464fd99e8 diff --git a/riscasm.c b/riscasm.c index c3bd88f..3399b81 100644 --- 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); }