summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/x86emit.h
diff options
context:
space:
mode:
author Derrick Renaud <derrickr@mamedev.org>2008-08-13 02:48:52 +0000
committer Derrick Renaud <derrickr@mamedev.org>2008-08-13 02:48:52 +0000
commit1daf41e21826daaa7e136f095672035817afcea5 (patch)
treef6f543718bf84378508a6d80c042e47d5f16beb0 /src/emu/cpu/x86emit.h
parent0f0b9208f62f0b631f6d5e91d12d244da9bb5c5e (diff)
Final CPU header updates. Mostly just re-naming the re-inclusions.
The structures/names were getting too complex for my macros to handle. They would require hand editing and my computer is too slow to keep re-compiling. Passes a clean compile.
Diffstat (limited to 'src/emu/cpu/x86emit.h')
-rw-r--r--src/emu/cpu/x86emit.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/emu/cpu/x86emit.h b/src/emu/cpu/x86emit.h
index a9cae927839..5d1c1b522c0 100644
--- a/src/emu/cpu/x86emit.h
+++ b/src/emu/cpu/x86emit.h
@@ -18,6 +18,8 @@
***************************************************************************/
+#pragma once
+
#ifndef __X86EMIT_H__
#define __X86EMIT_H__
@@ -3143,4 +3145,4 @@ INLINE void emit_cvttpd2dq_r128_m128(x86code **emitptr, UINT8 dreg, DECLARE_MEMP
INLINE void emit_roundpd_r128_r128_imm(x86code **emitptr, UINT8 dreg, UINT8 sreg, UINT8 imm) { emit_op_modrm_reg(emitptr, OP_ROUNDPD_Vdq_Wdq_Ib, OP_32BIT, dreg, sreg); emit_byte(emitptr, imm); }
INLINE void emit_roundpd_r128_m128_imm(x86code **emitptr, UINT8 dreg, DECLARE_MEMPARAMS, UINT8 imm) { emit_op_modrm_mem(emitptr, OP_ROUNDPD_Vdq_Wdq_Ib, OP_32BIT, dreg, MEMPARAMS); emit_byte(emitptr, imm); }
-#endif
+#endif /* __X86EMIT_H__ */