Implemented jnz.

--HG--
extra : convert_revision : ea169ad68acbb3383443586b783b831b3a9eecf9
This commit is contained in:
Gabe Black 2007-07-17 16:55:33 -07:00
parent 62ffc71fab
commit 2e80f71dcd
2 changed files with 8 additions and 1 deletions

View file

@ -264,7 +264,7 @@
0x2: jb_Jb();
0x3: jnb_Jb();
0x4: Inst::JZ(Jb);
0x5: jnz_Jb();
0x5: Inst::JNZ(Jb);
0x6: jbe_Jb();
0x7: jnbe_Jb();
}

View file

@ -60,4 +60,11 @@ def macroop JZ_I
limm t2, imm
wrip t1, t2, flags=(CZF,)
};
def macroop JNZ_I
{
rdip t1
limm t2, imm
wrip t1, t2, flags=(nCZF,)
};
'''