Added missing instructions fixes #22

This commit is contained in:
KevinRamharak 2018-01-03 13:28:35 +01:00
parent 57ec2e8e2d
commit 19177c3e95

View File

@ -20,7 +20,8 @@ var MarParserSyntax = {
'bp', 'sp'
],
doubleOperandInstructions : [
'mov', 'add', 'sub', 'and', 'or', 'test', 'cmp', 'shl', 'shr', 'xor', 'rol', 'ror', 'sal', 'sar'
'mov', 'add', 'sub', 'and', 'or', 'test', 'cmp', 'shl', 'shr', 'xor', 'rol', 'ror', 'sal', 'sar',
'xchg', 'rcl', 'rcr'
],
singleOperandInstructions : [
'push', 'mul', 'pop', 'div', 'neg', 'call', 'jnz', 'jg', 'jl', 'jge', 'jle', 'hwi', 'hwq', 'jz',