found and fixed a real bug

This commit is contained in:
Torsten Ruger
2014-04-18 16:04:14 +03:00
parent 4fa00371e5
commit 529f109171
2 changed files with 5 additions and 1 deletions

View File

@ -22,7 +22,7 @@ module Asm
if (opcode =~ /(#{COND_POSTFIXES})$/)
@cond = $1.to_sym
opcode = opcode[0..-3]
end
end unless opcode == 'teq'
if (opcode =~ /s$/)
@s = true
opcode = opcode[0..-2]