Implement the x86 nop to be a "fault" microop which returns "NoFault".

--HG--
extra : convert_revision : 1b446def756f1d0f80631db944d1cc41be95efbd
This commit is contained in:
Gabe Black 2007-07-18 16:10:44 -07:00
parent dffc40ff62
commit 3bd42af99e

View file

@ -53,8 +53,9 @@
#
# Authors: Gabe Black
microcode = ""
#let {{
# class NOP(Inst):
# "GenFault ${new UnimpInstFault}"
#}};
microcode = '''
def macroop NOP
{
fault "NoFault"
};
'''