From 2bbc058c6c5e54c032106f804dd3084ed11f0f09 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Thu, 18 Oct 2007 22:38:17 -0700 Subject: X86: Implement the LOOP instructions. --HG-- extra : convert_revision : 3ccd0565c83b6d9c9b63f9f7ac2b67839a2c714f --- src/arch/x86/isa/decoder/one_byte_opcodes.isa | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/arch/x86/isa/decoder/one_byte_opcodes.isa') diff --git a/src/arch/x86/isa/decoder/one_byte_opcodes.isa b/src/arch/x86/isa/decoder/one_byte_opcodes.isa index b1fdce0a7..6e7fdea35 100644 --- a/src/arch/x86/isa/decoder/one_byte_opcodes.isa +++ b/src/arch/x86/isa/decoder/one_byte_opcodes.isa @@ -472,9 +472,9 @@ } ##include "x87.isa" 0x1C: decode OPCODE_OP_BOTTOM3 { - 0x0: loopne_Jb(); - 0x1: loope_Jb(); - 0x2: loop_Jb(); + 0x0: Inst::LOOPNE(Jb); + 0x1: Inst::LOOPE(Jb); + 0x2: Inst::LOOP(Jb); 0x3: Inst::JRCX(Jb); 0x4: in_Al_Ib(); 0x5: in_eAX_Ib(); -- cgit v1.2.3