diff options
author | 2009-12-23 18:10:25 +0000 | |
---|---|---|
committer | 2009-12-23 18:10:25 +0000 | |
commit | c285eb9bcd3505c14a338e29f251ba00776cc75c (patch) | |
tree | 9387be1ac019ec1aadb83b22715651bd8b173d4b /src/emu/cpu/x86emit.h | |
parent | 79b8f09ad84aa2b0010562c6afac4ae1f6983759 (diff) |
Cleanups and version bump.mame0135u4
Diffstat (limited to 'src/emu/cpu/x86emit.h')
-rw-r--r-- | src/emu/cpu/x86emit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/x86emit.h b/src/emu/cpu/x86emit.h index 10395c52d4a..007d3600c1a 100644 --- a/src/emu/cpu/x86emit.h +++ b/src/emu/cpu/x86emit.h @@ -1900,7 +1900,7 @@ INLINE void emit_movsx_r32_r8(x86code **emitptr, UINT8 dreg, UINT8 sreg) { INLINE void emit_movsx_r32_m8(x86code **emitptr, UINT8 dreg, DECLARE_MEMPARAMS) { emit_op_modrm_mem(emitptr, OP_MOVSX_Gv_Eb, OP_32BIT, dreg, MEMPARAMS); } INLINE void emit_movsx_r32_r16(x86code **emitptr, UINT8 dreg, UINT8 sreg) { emit_op_modrm_reg(emitptr, OP_MOVSX_Gv_Ew, OP_32BIT, dreg, sreg); } INLINE void emit_movsx_r32_m16(x86code **emitptr, UINT8 dreg, DECLARE_MEMPARAMS) { emit_op_modrm_mem(emitptr, OP_MOVSX_Gv_Ew, OP_32BIT, dreg, MEMPARAMS); } -INLINE void emit_movzx_r32_r8(x86code **emitptr, UINT8 dreg, UINT8 sreg) +INLINE void emit_movzx_r32_r8(x86code **emitptr, UINT8 dreg, UINT8 sreg) { #ifndef PTR64 if (sreg >= 4) |