summaryrefslogtreecommitdiff
path: root/src/arch/x86/isa/decoder
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-07-17 15:36:45 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-07-17 15:36:45 -0700
commitd77d4c04b702fd8af1d268893bd71e7245f9c542 (patch)
treebebd7ca5997fcb17697ad9a55677e75ca198597f /src/arch/x86/isa/decoder
parentc4004482a536f412f5aa8416aa6ca39d8075a89c (diff)
downloadgem5-d77d4c04b702fd8af1d268893bd71e7245f9c542.tar.xz
Implement the jz instruction.
--HG-- extra : convert_revision : 7c0bd7ce244f724ac03bbb5fdf770c7a3eba78b4
Diffstat (limited to 'src/arch/x86/isa/decoder')
-rw-r--r--src/arch/x86/isa/decoder/one_byte_opcodes.isa2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/isa/decoder/one_byte_opcodes.isa b/src/arch/x86/isa/decoder/one_byte_opcodes.isa
index 484f8160d..4be83bf54 100644
--- a/src/arch/x86/isa/decoder/one_byte_opcodes.isa
+++ b/src/arch/x86/isa/decoder/one_byte_opcodes.isa
@@ -263,7 +263,7 @@
0x1: jno_Jb();
0x2: jb_Jb();
0x3: jnb_Jb();
- 0x4: jz_Jb();
+ 0x4: Inst::JZ(Jb);
0x5: jnz_Jb();
0x6: jbe_Jb();
0x7: jnbe_Jb();