[coreboot-gerrit] Change in coreboot[master]: device/oprom/x86emu/*.h: Fix coding style

Elyes HAOUAS (Code Review) gerrit at coreboot.org
Fri May 18 11:30:33 CEST 2018


Elyes HAOUAS has uploaded this change for review. ( https://review.coreboot.org/26364


Change subject: device/oprom/x86emu/*.h: Fix coding style
......................................................................

device/oprom/x86emu/*.h: Fix coding style

Change-Id: Ief5cc4178095bb617f770e6c078770a8f1af0133
Signed-off-by: Elyes HAOUAS <ehaouas at noos.fr>
---
M src/device/oprom/x86emu/debug.h
M src/device/oprom/x86emu/decode.h
M src/device/oprom/x86emu/fpu.h
M src/device/oprom/x86emu/ops.h
M src/device/oprom/x86emu/prim_asm.h
M src/device/oprom/x86emu/prim_ops.c
M src/device/oprom/x86emu/prim_ops.h
M src/device/oprom/x86emu/x86emui.h
8 files changed, 1,157 insertions(+), 1,162 deletions(-)



  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/64/26364/1

diff --git a/src/device/oprom/x86emu/debug.h b/src/device/oprom/x86emu/debug.h
index f89d5ab..a2316ba 100644
--- a/src/device/oprom/x86emu/debug.h
+++ b/src/device/oprom/x86emu/debug.h
@@ -1,10 +1,10 @@
 /****************************************************************************
 *
-*						Realmode X86 Emulator Library
+*			Realmode X86 Emulator Library
 *
-*            	Copyright (C) 1996-1999 SciTech Software, Inc.
-* 				     Copyright (C) David Mosberger-Tang
-* 					   Copyright (C) 1999 Egbert Eich
+*		Copyright (C) 1996-1999 SciTech Software, Inc.
+*		Copyright (C) David Mosberger-Tang
+*		Copyright (C) 1999 Egbert Eich
 *
 *  ========================================================================
 *
@@ -28,11 +28,11 @@
 *
 *  ========================================================================
 *
-* Language:		ANSI C
+* Language:	ANSI C
 * Environment:	Any
-* Developer:    Kendall Bennett
+* Developer:	Kendall Bennett
 *
-* Description:  Header file for debug definitions.
+* Description:	Header file for debug definitions.
 *
 ****************************************************************************/
 
@@ -46,72 +46,72 @@
 
 /* checks to be enabled for "runtime" */
 
-#define CHECK_IP_FETCH_F                0x1
-#define CHECK_SP_ACCESS_F               0x2
-#define CHECK_MEM_ACCESS_F              0x4 /*using regular linear pointer */
-#define CHECK_DATA_ACCESS_F             0x8 /*using segment:offset*/
+#define CHECK_IP_FETCH_F	0x1
+#define CHECK_SP_ACCESS_F	0x2
+#define CHECK_MEM_ACCESS_F	0x4	/*using regular linear pointer */
+#define CHECK_DATA_ACCESS_F	0x8	/*using segment:offset */
 
 #ifdef DEBUG
-# define CHECK_IP_FETCH()              	(M.x86.check & CHECK_IP_FETCH_F)
-# define CHECK_SP_ACCESS()             	(M.x86.check & CHECK_SP_ACCESS_F)
-# define CHECK_MEM_ACCESS()            	(M.x86.check & CHECK_MEM_ACCESS_F)
-# define CHECK_DATA_ACCESS()           	(M.x86.check & CHECK_DATA_ACCESS_F)
+#define CHECK_IP_FETCH()	(M.x86.check & CHECK_IP_FETCH_F)
+#define CHECK_SP_ACCESS()	(M.x86.check & CHECK_SP_ACCESS_F)
+#define CHECK_MEM_ACCESS()	(M.x86.check & CHECK_MEM_ACCESS_F)
+#define CHECK_DATA_ACCESS()	(M.x86.check & CHECK_DATA_ACCESS_F)
 #else
-# define CHECK_IP_FETCH()
-# define CHECK_SP_ACCESS()
-# define CHECK_MEM_ACCESS()
-# define CHECK_DATA_ACCESS()
+#define CHECK_IP_FETCH()
+#define CHECK_SP_ACCESS()
+#define CHECK_MEM_ACCESS()
+#define CHECK_DATA_ACCESS()
 #endif
 
 #ifdef DEBUG
-# define DEBUG_INSTRUMENT()    	(M.x86.debug & DEBUG_INSTRUMENT_F)
-# define DEBUG_DECODE()        	(M.x86.debug & DEBUG_DECODE_F)
-# define DEBUG_TRACE()         	(M.x86.debug & DEBUG_TRACE_F)
-# define DEBUG_STEP()          	(M.x86.debug & DEBUG_STEP_F)
-# define DEBUG_DISASSEMBLE()   	(M.x86.debug & DEBUG_DISASSEMBLE_F)
-# define DEBUG_BREAK()         	(M.x86.debug & DEBUG_BREAK_F)
-# define DEBUG_SVC()           	(M.x86.debug & DEBUG_SVC_F)
-# define DEBUG_SAVE_IP_CS()     (M.x86.debug & DEBUG_SAVE_IP_CS_F)
+#define DEBUG_INSTRUMENT()	(M.x86.debug & DEBUG_INSTRUMENT_F)
+#define DEBUG_DECODE()		(M.x86.debug & DEBUG_DECODE_F)
+#define DEBUG_TRACE()		(M.x86.debug & DEBUG_TRACE_F)
+#define DEBUG_STEP()		(M.x86.debug & DEBUG_STEP_F)
+#define DEBUG_DISASSEMBLE()	(M.x86.debug & DEBUG_DISASSEMBLE_F)
+#define DEBUG_BREAK()		(M.x86.debug & DEBUG_BREAK_F)
+#define DEBUG_SVC()		(M.x86.debug & DEBUG_SVC_F)
+#define DEBUG_SAVE_IP_CS()	(M.x86.debug & DEBUG_SAVE_IP_CS_F)
 
-# define DEBUG_FS()            	(M.x86.debug & DEBUG_FS_F)
-# define DEBUG_PROC()          	(M.x86.debug & DEBUG_PROC_F)
-# define DEBUG_SYSINT()        	(M.x86.debug & DEBUG_SYSINT_F)
-# define DEBUG_TRACECALL()     	(M.x86.debug & DEBUG_TRACECALL_F)
-# define DEBUG_TRACECALLREGS() 	(M.x86.debug & DEBUG_TRACECALL_REGS_F)
-# define DEBUG_TRACEJMP()       (M.x86.debug & DEBUG_TRACEJMP_F)
-# define DEBUG_TRACEJMPREGS()   (M.x86.debug & DEBUG_TRACEJMP_REGS_F)
-# define DEBUG_SYS()           	(M.x86.debug & DEBUG_SYS_F)
-# define DEBUG_MEM_TRACE()     	(M.x86.debug & DEBUG_MEM_TRACE_F)
-# define DEBUG_IO_TRACE()      	(M.x86.debug & DEBUG_IO_TRACE_F)
-# define DEBUG_DECODE_NOPRINT() (M.x86.debug & DEBUG_DECODE_NOPRINT_F)
+#define DEBUG_FS()		(M.x86.debug & DEBUG_FS_F)
+#define DEBUG_PROC()		(M.x86.debug & DEBUG_PROC_F)
+#define DEBUG_SYSINT()		(M.x86.debug & DEBUG_SYSINT_F)
+#define DEBUG_TRACECALL()	(M.x86.debug & DEBUG_TRACECALL_F)
+#define DEBUG_TRACECALLREGS()	(M.x86.debug & DEBUG_TRACECALL_REGS_F)
+#define DEBUG_TRACEJMP()	(M.x86.debug & DEBUG_TRACEJMP_F)
+#define DEBUG_TRACEJMPREGS()	(M.x86.debug & DEBUG_TRACEJMP_REGS_F)
+#define DEBUG_SYS()		(M.x86.debug & DEBUG_SYS_F)
+#define DEBUG_MEM_TRACE()	(M.x86.debug & DEBUG_MEM_TRACE_F)
+#define DEBUG_IO_TRACE()	(M.x86.debug & DEBUG_IO_TRACE_F)
+#define DEBUG_DECODE_NOPRINT()	(M.x86.debug & DEBUG_DECODE_NOPRINT_F)
 #else
-# define DEBUG_INSTRUMENT()    	0
-# define DEBUG_DECODE()        	0
-# define DEBUG_TRACE()         	0
-# define DEBUG_STEP()          	0
-# define DEBUG_DISASSEMBLE()   	0
-# define DEBUG_BREAK()         	0
-# define DEBUG_SVC()           	0
-# define DEBUG_SAVE_IP_CS()     0
-# define DEBUG_FS()            	0
-# define DEBUG_PROC()          	0
-# define DEBUG_SYSINT()        	0
-# define DEBUG_TRACECALL()     	0
-# define DEBUG_TRACECALLREGS() 	0
-# define DEBUG_TRACEJMP()       0
-# define DEBUG_TRACEJMPREGS()   0
-# define DEBUG_SYS()           	0
-# define DEBUG_MEM_TRACE()     	0
-# define DEBUG_IO_TRACE()      	0
-# define DEBUG_DECODE_NOPRINT() 0
+#define DEBUG_INSTRUMENT()	0
+#define DEBUG_DECODE()		0
+#define DEBUG_TRACE()		0
+#define DEBUG_STEP()		0
+#define DEBUG_DISASSEMBLE()	0
+#define DEBUG_BREAK()		0
+#define DEBUG_SVC()		0
+#define DEBUG_SAVE_IP_CS()	0
+#define DEBUG_FS()		0
+#define DEBUG_PROC()		0
+#define DEBUG_SYSINT()		0
+#define DEBUG_TRACECALL()	0
+#define DEBUG_TRACECALLREGS()	0
+#define DEBUG_TRACEJMP()	0
+#define DEBUG_TRACEJMPREGS()	0
+#define DEBUG_SYS()		0
+#define DEBUG_MEM_TRACE()	0
+#define DEBUG_IO_TRACE()	0
+#define DEBUG_DECODE_NOPRINT()	0
 #endif
 
 #ifdef DEBUG
 
-# define DECODE_PRINTF(x)     	if (DEBUG_DECODE()) \
-									x86emu_decode_printf(x)
-# define DECODE_PRINTF2(x,y)  	if (DEBUG_DECODE()) \
-									x86emu_decode_printf2(x,y)
+#define DECODE_PRINTF(x)	if (DEBUG_DECODE()) \
+					x86emu_decode_printf(x)
+#define DECODE_PRINTF2(x, y)	if (DEBUG_DECODE()) \
+					x86emu_decode_printf2(x, y)
 
 /*
  * The following allow us to look at the bytes of an instruction.  The
@@ -119,74 +119,74 @@
  * the decoding process.  The SAVE_IP_CS is called initially when the
  * major opcode of the instruction is accessed.
  */
-#define INC_DECODED_INST_LEN(x)                    	\
-	if (DEBUG_DECODE())  	                       	\
+#define INC_DECODED_INST_LEN(x)			\
+	if (DEBUG_DECODE())			\
 		x86emu_inc_decoded_inst_len(x)
 
-#define SAVE_IP_CS(x,y)                               			\
-	if (DEBUG_DECODE() | DEBUG_TRACECALL() | DEBUG_BREAK() \
-              | DEBUG_IO_TRACE() | DEBUG_SAVE_IP_CS()) { \
-		M.x86.saved_cs = x;                          			\
-		M.x86.saved_ip = y;                          			\
+#define SAVE_IP_CS(x, y)					\
+	if (DEBUG_DECODE() | DEBUG_TRACECALL() | DEBUG_BREAK()	\
+	    | DEBUG_IO_TRACE() | DEBUG_SAVE_IP_CS()) {		\
+		M.x86.saved_cs = x;				\
+		M.x86.saved_ip = y;				\
 	}
 #else
-# define INC_DECODED_INST_LEN(x)
-# define DECODE_PRINTF(x)
-# define DECODE_PRINTF2(x,y)
-# define SAVE_IP_CS(x,y)
+#define INC_DECODED_INST_LEN(x)
+#define DECODE_PRINTF(x)
+#define DECODE_PRINTF2(x, y)
+#define SAVE_IP_CS(x, y)
 #endif
 
 #ifdef DEBUG
-#define TRACE_REGS()                                   		\
-	if (DEBUG_DISASSEMBLE()) {                         		\
-		x86emu_just_disassemble();                        	\
-		goto EndOfTheInstructionProcedure;             		\
-	}                                                   	\
+#define TRACE_REGS()						\
+	if (DEBUG_DISASSEMBLE()) {				\
+		x86emu_just_disassemble();			\
+		goto EndOfTheInstructionProcedure;		\
+	}							\
 	if (DEBUG_TRACE() || DEBUG_DECODE()) X86EMU_trace_regs()
 #else
-# define TRACE_REGS()
+#define TRACE_REGS()
 #endif
 
 #ifdef DEBUG
-# define SINGLE_STEP()		if (DEBUG_STEP()) x86emu_single_step()
+#define SINGLE_STEP()		if (DEBUG_STEP()) x86emu_single_step()
 #else
-# define SINGLE_STEP()
+#define SINGLE_STEP()
 #endif
 
 #define TRACE_AND_STEP()	\
-	TRACE_REGS();			\
+	TRACE_REGS();		\
 	SINGLE_STEP()
 
 #ifdef DEBUG
-# define START_OF_INSTR()
-# define END_OF_INSTR()		EndOfTheInstructionProcedure: x86emu_end_instr();
-# define END_OF_INSTR_NO_TRACE()	x86emu_end_instr();
+#define START_OF_INSTR()
+#define END_OF_INSTR()		EndOfTheInstructionProcedure : x86emu_end_instr();
+#define END_OF_INSTR_NO_TRACE()	x86emu_end_instr();
 #else
-# define START_OF_INSTR()
-# define END_OF_INSTR()
-# define END_OF_INSTR_NO_TRACE()
+#define START_OF_INSTR()
+#define END_OF_INSTR()
+#define END_OF_INSTR_NO_TRACE()
 #endif
 
 #ifdef DEBUG
-# define  CALL_TRACE(u,v,w,x,s)                                 \
-	if (DEBUG_TRACECALLREGS())									\
-		x86emu_dump_regs();                                     \
-	if (DEBUG_TRACECALL())                                     	\
-		printf("%04x:%04x: CALL %s%04x:%04x\n", u , v, s, w, x);
-# define RETURN_TRACE(u,v,w,x,s)                                    \
-	if (DEBUG_TRACECALLREGS())									\
-		x86emu_dump_regs();                                     \
-	if (DEBUG_TRACECALL())                                     	\
-		printf("%04x:%04x: RET %s %04x:%04x\n",u,v,s,w,x);
-# define  JMP_TRACE(u,v,w,x,s)                                 \
-   if (DEBUG_TRACEJMPREGS()) \
-      x86emu_dump_regs(); \
-   if (DEBUG_TRACEJMP()) \
-      printf("%04x:%04x: JMP %s%04x:%04x\n", u , v, s, w, x);
+#define  CALL_TRACE(u, v, w, x, s)					\
+	if (DEBUG_TRACECALLREGS())					\
+		x86emu_dump_regs();					\
+	if (DEBUG_TRACECALL())						\
+		printf("%04x:%04x: CALL %s%04x:%04x\n", u, v, s, w, x);
+#define RETURN_TRACE(u, v, w, x, s)	\
+	if (DEBUG_TRACECALLREGS())	\
+		x86emu_dump_regs();	\
+	if (DEBUG_TRACECALL())		\
+		printf("%04x:%04x: RET %s %04x:%04x\n", u, v, s, w, x);
+#define  JMP_TRACE(u, v, w, x, s)	\
+	if (DEBUG_TRACEJMPREGS())	\
+		x86emu_dump_regs();	\
+	if (DEBUG_TRACEJMP())	\
+		printf("%04x:%04x: JMP %s%04x:%04x\n", u, v, s, w, x);
 #else
-# define CALL_TRACE(u,v,w,x,s)
-# define RETURN_TRACE(u,v,w,x,s)
-# define  JMP_TRACE(u,v,w,x,s)
+#define CALL_TRACE(u, v, w, x, s)
+#define RETURN_TRACE(u, v, w, x, s)
+#define  JMP_TRACE(u, v, w, x, s)
 #endif
 
 #ifdef DEBUG
@@ -203,29 +203,28 @@
 
 /*-------------------------- Function Prototypes --------------------------*/
 
-#ifdef  __cplusplus
-extern "C" {            			/* Use "C" linkage when in C++ mode */
+#ifdef __cplusplus
+extern "C" {		/* Use "C" linkage when in C++ mode */
 #endif
 
-void x86emu_inc_decoded_inst_len (int x);
-void x86emu_decode_printf (const char *x);
-void x86emu_decode_printf2 (const char *x, int y);
-void x86emu_just_disassemble (void);
-void x86emu_single_step (void);
-void x86emu_end_instr (void);
-void x86emu_dump_regs (void);
-void x86emu_dump_xregs (void);
-void x86emu_print_int_vect (u16 iv);
-void x86emu_instrument_instruction (void);
-void x86emu_check_ip_access (void);
-void x86emu_check_sp_access (void);
-void x86emu_check_mem_access (u32 p);
-void x86emu_check_data_access (uint s, uint o);
+	void x86emu_inc_decoded_inst_len(int x);
+	void x86emu_decode_printf(const char *x);
+	void x86emu_decode_printf2(const char *x, int y);
+	void x86emu_just_disassemble(void);
+	void x86emu_single_step(void);
+	void x86emu_end_instr(void);
+	void x86emu_dump_regs(void);
+	void x86emu_dump_xregs(void);
+	void x86emu_print_int_vect(u16 iv);
+	void x86emu_instrument_instruction(void);
+	void x86emu_check_ip_access(void);
+	void x86emu_check_sp_access(void);
+	void x86emu_check_mem_access(u32 p);
+	void x86emu_check_data_access(uint s, uint o);
 
-void disassemble_forward (u16 seg, u16 off, int n);
+	void disassemble_forward(u16 seg, u16 off, int n);
 
-#ifdef  __cplusplus
-}                       			/* End of "C" linkage for C++   	*/
+#ifdef __cplusplus
+} /* End of "C" linkage for C++           */
 #endif
-
 #endif /* __X86EMU_DEBUG_H */
diff --git a/src/device/oprom/x86emu/decode.h b/src/device/oprom/x86emu/decode.h
index 99ed7f6..f8722c8 100644
--- a/src/device/oprom/x86emu/decode.h
+++ b/src/device/oprom/x86emu/decode.h
@@ -1,10 +1,10 @@
 /****************************************************************************
 *
-*						Realmode X86 Emulator Library
+*			Realmode X86 Emulator Library
 *
-*            	Copyright (C) 1996-1999 SciTech Software, Inc.
-* 				     Copyright (C) David Mosberger-Tang
-* 					   Copyright (C) 1999 Egbert Eich
+*		Copyright (C) 1996-1999 SciTech Software, Inc.
+*		Copyright (C) David Mosberger-Tang
+*		Copyright (C) 1999 Egbert Eich
 *
 *  ========================================================================
 *
@@ -28,11 +28,11 @@
 *
 *  ========================================================================
 *
-* Language:		ANSI C
+* Language:	ANSI C
 * Environment:	Any
-* Developer:    Kendall Bennett
+* Developer:	Kendall Bennett
 *
-* Description:  Header file for instruction decoding logic.
+* Description:	Header file for instruction decoding logic.
 *
 ****************************************************************************/
 
@@ -43,46 +43,45 @@
 
 /* Instruction Decoding Stuff */
 
-#define FETCH_DECODE_MODRM(mod,rh,rl) 	fetch_decode_modrm(&mod,&rh,&rl)
-#define DECODE_RM_BYTE_REGISTER(r)    	decode_rm_byte_register(r)
-#define DECODE_RM_WORD_REGISTER(r)    	decode_rm_word_register(r)
-#define DECODE_RM_LONG_REGISTER(r)    	decode_rm_long_register(r)
-#define DECODE_CLEAR_SEGOVR()         	M.x86.mode &= ~SYSMODE_CLRMASK
+#define FETCH_DECODE_MODRM(mod, rh, rl)	fetch_decode_modrm(&mod, &rh, &rl)
+#define DECODE_RM_BYTE_REGISTER(r)	decode_rm_byte_register(r)
+#define DECODE_RM_WORD_REGISTER(r)	decode_rm_word_register(r)
+#define DECODE_RM_LONG_REGISTER(r)	decode_rm_long_register(r)
+#define DECODE_CLEAR_SEGOVR()		M.x86.mode &= ~SYSMODE_CLRMASK
 
 /*-------------------------- Function Prototypes --------------------------*/
 
-#ifdef  __cplusplus
-extern "C" {            			/* Use "C" linkage when in C++ mode */
+#ifdef __cplusplus
+extern "C" {		/* Use "C" linkage when in C++ mode */
 #endif
 
-void 	x86emu_intr_raise (u8 type);
-void    fetch_decode_modrm (int *mod,int *regh,int *regl);
-u8      fetch_byte_imm (void);
-u16     fetch_word_imm (void);
-u32     fetch_long_imm (void);
-u8      fetch_data_byte (uint offset);
-u8      fetch_data_byte_abs (uint segment, uint offset);
-u16     fetch_data_word (uint offset);
-u16     fetch_data_word_abs (uint segment, uint offset);
-u32     fetch_data_long (uint offset);
-u32     fetch_data_long_abs (uint segment, uint offset);
-void    store_data_byte (uint offset, u8 val);
-void    store_data_byte_abs (uint segment, uint offset, u8 val);
-void    store_data_word (uint offset, u16 val);
-void    store_data_word_abs (uint segment, uint offset, u16 val);
-void    store_data_long (uint offset, u32 val);
-void    store_data_long_abs (uint segment, uint offset, u32 val);
-u8* 	decode_rm_byte_register(int reg);
-u16* 	decode_rm_word_register(int reg);
-u32* 	decode_rm_long_register(int reg);
-u16* 	decode_rm_seg_register(int reg);
-unsigned decode_rm00_address(int rm);
-unsigned decode_rm01_address(int rm);
-unsigned decode_rm10_address(int rm);
-unsigned decode_rmXX_address(int mod, int rm);
+	void x86emu_intr_raise(u8 type);
+	void fetch_decode_modrm(int *mod, int *regh, int *regl);
+	u8 fetch_byte_imm(void);
+	u16 fetch_word_imm(void);
+	u32 fetch_long_imm(void);
+	u8 fetch_data_byte(uint offset);
+	u8 fetch_data_byte_abs(uint segment, uint offset);
+	u16 fetch_data_word(uint offset);
+	u16 fetch_data_word_abs(uint segment, uint offset);
+	u32 fetch_data_long(uint offset);
+	u32 fetch_data_long_abs(uint segment, uint offset);
+	void store_data_byte(uint offset, u8 val);
+	void store_data_byte_abs(uint segment, uint offset, u8 val);
+	void store_data_word(uint offset, u16 val);
+	void store_data_word_abs(uint segment, uint offset, u16 val);
+	void store_data_long(uint offset, u32 val);
+	void store_data_long_abs(uint segment, uint offset, u32 val);
+	u8 *decode_rm_byte_register(int reg);
+	u16 *decode_rm_word_register(int reg);
+	u32 *decode_rm_long_register(int reg);
+	u16 *decode_rm_seg_register(int reg);
+	unsigned decode_rm00_address(int rm);
+	unsigned decode_rm01_address(int rm);
+	unsigned decode_rm10_address(int rm);
+	unsigned decode_rmXX_address(int mod, int rm);
 
-#ifdef  __cplusplus
-}                       			/* End of "C" linkage for C++   	*/
+#ifdef __cplusplus
+} /* End of "C" linkage for C++           */
 #endif
-
 #endif /* __X86EMU_DECODE_H */
diff --git a/src/device/oprom/x86emu/fpu.h b/src/device/oprom/x86emu/fpu.h
index 5fb2714..f42278e 100644
--- a/src/device/oprom/x86emu/fpu.h
+++ b/src/device/oprom/x86emu/fpu.h
@@ -1,10 +1,10 @@
 /****************************************************************************
 *
-*						Realmode X86 Emulator Library
+*			Realmode X86 Emulator Library
 *
-*            	Copyright (C) 1996-1999 SciTech Software, Inc.
-* 				     Copyright (C) David Mosberger-Tang
-* 					   Copyright (C) 1999 Egbert Eich
+*		Copyright (C) 1996-1999 SciTech Software, Inc.
+*		Copyright (C) David Mosberger-Tang
+*		Copyright (C) 1999 Egbert Eich
 *
 *  ========================================================================
 *
@@ -28,34 +28,33 @@
 *
 *  ========================================================================
 *
-* Language:		ANSI C
+* Language:	ANSI C
 * Environment:	Any
-* Developer:    Kendall Bennett
+* Developer:	Kendall Bennett
 *
-* Description:  Header file for FPU instruction decoding.
+* Description:	Header file for FPU instruction decoding.
 *
 ****************************************************************************/
 
 #ifndef __X86EMU_FPU_H
 #define __X86EMU_FPU_H
 
-#ifdef  __cplusplus
-extern "C" {            			/* Use "C" linkage when in C++ mode */
+#ifdef __cplusplus
+extern "C" {		/* Use "C" linkage when in C++ mode */
 #endif
 
 /* these have to be defined, whether 8087 support compiled in or not. */
 
-extern void x86emuOp_esc_coprocess_d8 (u8 op1);
-extern void x86emuOp_esc_coprocess_d9 (u8 op1);
-extern void x86emuOp_esc_coprocess_da (u8 op1);
-extern void x86emuOp_esc_coprocess_db (u8 op1);
-extern void x86emuOp_esc_coprocess_dc (u8 op1);
-extern void x86emuOp_esc_coprocess_dd (u8 op1);
-extern void x86emuOp_esc_coprocess_de (u8 op1);
-extern void x86emuOp_esc_coprocess_df (u8 op1);
+	extern void x86emuOp_esc_coprocess_d8(u8 op1);
+	extern void x86emuOp_esc_coprocess_d9(u8 op1);
+	extern void x86emuOp_esc_coprocess_da(u8 op1);
+	extern void x86emuOp_esc_coprocess_db(u8 op1);
+	extern void x86emuOp_esc_coprocess_dc(u8 op1);
+	extern void x86emuOp_esc_coprocess_dd(u8 op1);
+	extern void x86emuOp_esc_coprocess_de(u8 op1);
+	extern void x86emuOp_esc_coprocess_df(u8 op1);
 
-#ifdef  __cplusplus
-}                       			/* End of "C" linkage for C++   	*/
+#ifdef __cplusplus
+} /* End of "C" linkage for C++           */
 #endif
-
 #endif /* __X86EMU_FPU_H */
diff --git a/src/device/oprom/x86emu/ops.h b/src/device/oprom/x86emu/ops.h
index 825b9ea..2bec80d 100644
--- a/src/device/oprom/x86emu/ops.h
+++ b/src/device/oprom/x86emu/ops.h
@@ -1,10 +1,10 @@
 /****************************************************************************
 *
-*						Realmode X86 Emulator Library
+*			Realmode X86 Emulator Library
 *
-*            	Copyright (C) 1996-1999 SciTech Software, Inc.
-* 				     Copyright (C) David Mosberger-Tang
-* 					   Copyright (C) 1999 Egbert Eich
+*		Copyright (C) 1996-1999 SciTech Software, Inc.
+*		Copyright (C) David Mosberger-Tang
+*		Copyright (C) 1999 Egbert Eich
 *
 *  ========================================================================
 *
@@ -28,19 +28,19 @@
 *
 *  ========================================================================
 *
-* Language:		ANSI C
+* Language:	ANSI C
 * Environment:	Any
-* Developer:    Kendall Bennett
+* Developer:	Kendall Bennett
 *
-* Description:  Header file for operand decoding functions.
+* Description:	Header file for operand decoding functions.
 *
 ****************************************************************************/
 
 #ifndef __X86EMU_OPS_H
 #define __X86EMU_OPS_H
 
-extern void (*x86emu_optab[0x100])(u8 op1);
-extern void (*x86emu_optab2[0x100])(u8 op2);
+extern void (*x86emu_optab[0x100]) (u8 op1);
+extern void (*x86emu_optab2[0x100]) (u8 op2);
 
 int x86emu_check_jump_condition(u8 op);
 
diff --git a/src/device/oprom/x86emu/prim_asm.h b/src/device/oprom/x86emu/prim_asm.h
index e023cf8..20e5bcf 100644
--- a/src/device/oprom/x86emu/prim_asm.h
+++ b/src/device/oprom/x86emu/prim_asm.h
@@ -1,10 +1,10 @@
 /****************************************************************************
 *
-*						Realmode X86 Emulator Library
+*			Realmode X86 Emulator Library
 *
-*            	Copyright (C) 1996-1999 SciTech Software, Inc.
-* 				     Copyright (C) David Mosberger-Tang
-* 					   Copyright (C) 1999 Egbert Eich
+*		Copyright (C) 1996-1999 SciTech Software, Inc.
+*		Copyright (C) David Mosberger-Tang
+*		Copyright (C) 1999 Egbert Eich
 *
 *  ========================================================================
 *
@@ -28,15 +28,15 @@
 *
 *  ========================================================================
 *
-* Language:		Watcom C++ 10.6 or later
+* Language:	Watcom C++ 10.6 or later
 * Environment:	Any
-* Developer:    Kendall Bennett
+* Developer:	Kendall Bennett
 *
-* Description:  Inline assembler versions of the primitive operand
-*				functions for faster performance. At the moment this is
-*				x86 inline assembler, but these functions could be replaced
-*				with native inline assembler for each supported processor
-*				platform.
+* Description:	Inline assembler versions of the primitive operand
+*		functions for faster performance. At the moment this is
+*		x86 inline assembler, but these functions could be replaced
+*		with native inline assembler for each supported processor
+*		platform.
 *
 ****************************************************************************/
 
@@ -49,920 +49,920 @@
 #define	__HAVE_INLINE_ASSEMBLER__
 #endif
 
-u32		get_flags_asm(void);
-#pragma aux get_flags_asm =			\
-	"pushf"                         \
-	"pop	eax"                  	\
-	value [eax]                     \
+u32 get_flags_asm(void);
+#pragma aux get_flags_asm =		\
+	"pushf"				\
+	"pop	eax"			\
+	value [eax]			\
 	modify exact [eax];
 
-u16     aaa_word_asm(u32 *flags,u16 d);
-#pragma aux aaa_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"aaa"                  			\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] 				\
-	value [ax]                      \
+u16 aaa_word_asm(u32 *flags, u16 d);
+#pragma aux aaa_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"aaa"				\
+	"pushf"\
+	"pop	[edi]"			\
+	parm [edi] [ax]			\
+	value [ax]			\
 	modify exact [ax];
 
-u16     aas_word_asm(u32 *flags,u16 d);
-#pragma aux aas_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"aas"                  			\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] 				\
-	value [ax]                      \
+u16 aas_word_asm(u32 *flags, u16 d);
+#pragma aux aas_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"aas"				\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax]			\
+	value [ax]			\
 	modify exact [ax];
 
-u16     aad_word_asm(u32 *flags,u16 d);
-#pragma aux aad_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"aad"                  			\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] 				\
-	value [ax]                      \
+u16 aad_word_asm(u32 *flags, u16 d);
+#pragma aux aad_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"aad"				\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax]			\
+	value [ax]			\
 	modify exact [ax];
 
-u16     aam_word_asm(u32 *flags,u8 d);
-#pragma aux aam_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"aam"                  			\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al] 				\
-	value [ax]                      \
+u16 aam_word_asm(u32 *flags, u8 d);
+#pragma aux aam_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"aam"				\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al]			\
+	value [ax]			\
 	modify exact [ax];
 
-u8      adc_byte_asm(u32 *flags,u8 d, u8 s);
-#pragma aux adc_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"adc	al,bl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al] [bl]            \
-	value [al]                      \
+u8 adc_byte_asm(u32 *flags, u8 d, u8 s);
+#pragma aux adc_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"adc	al,bl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al] [bl]		\
+	value [al]			\
 	modify exact [al bl];
 
-u16     adc_word_asm(u32 *flags,u16 d, u16 s);
-#pragma aux adc_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"adc	ax,bx"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] [bx]            \
-	value [ax]                      \
+u16 adc_word_asm(u32 *flags, u16 d, u16 s);
+#pragma aux adc_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"adc	ax,bx"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax] [bx]		\
+	value [ax]			\
 	modify exact [ax bx];
 
-u32     adc_long_asm(u32 *flags,u32 d, u32 s);
-#pragma aux adc_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"adc	eax,ebx"                \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax] [ebx]          \
-	value [eax]                     \
+u32 adc_long_asm(u32 *flags, u32 d, u32 s);
+#pragma aux adc_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"adc	eax,ebx"		\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax] [ebx]		\
+	value [eax]			\
 	modify exact [eax ebx];
 
-u8      add_byte_asm(u32 *flags,u8 d, u8 s);
-#pragma aux add_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"add	al,bl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al] [bl]            \
-	value [al]                      \
+u8 add_byte_asm(u32 *flags, u8 d, u8 s);
+#pragma aux add_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"add	al,bl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al] [bl]		\
+	value [al]			\
 	modify exact [al bl];
 
-u16     add_word_asm(u32 *flags,u16 d, u16 s);
-#pragma aux add_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"add	ax,bx"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] [bx]            \
-	value [ax]                      \
+u16 add_word_asm(u32 *flags, u16 d, u16 s);
+#pragma aux add_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"add	ax,bx"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax] [bx]		\
+	value [ax]			\
 	modify exact [ax bx];
 
-u32     add_long_asm(u32 *flags,u32 d, u32 s);
-#pragma aux add_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"add	eax,ebx"                \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax] [ebx]          \
-	value [eax]                     \
+u32 add_long_asm(u32 *flags, u32 d, u32 s);
+#pragma aux add_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"add	eax,ebx"		\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax] [ebx]		\
+	value [eax]			\
 	modify exact [eax ebx];
 
-u8      and_byte_asm(u32 *flags,u8 d, u8 s);
-#pragma aux and_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"and	al,bl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al] [bl]            \
-	value [al]                      \
+u8 and_byte_asm(u32 *flags, u8 d, u8 s);
+#pragma aux and_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"and	al,bl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al] [bl]		\
+	value [al]			\
 	modify exact [al bl];
 
-u16     and_word_asm(u32 *flags,u16 d, u16 s);
-#pragma aux and_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"and	ax,bx"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] [bx]            \
-	value [ax]                      \
+u16 and_word_asm(u32 *flags, u16 d, u16 s);
+#pragma aux and_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"and	ax,bx"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax] [bx]		\
+	value [ax]			\
 	modify exact [ax bx];
 
-u32     and_long_asm(u32 *flags,u32 d, u32 s);
-#pragma aux and_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"and	eax,ebx"                \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax] [ebx]          \
-	value [eax]                     \
+u32 and_long_asm(u32 *flags, u32 d, u32 s);
+#pragma aux and_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"and	eax,ebx"		\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax] [ebx]		\
+	value [eax]			\
 	modify exact [eax ebx];
 
-u8      cmp_byte_asm(u32 *flags,u8 d, u8 s);
-#pragma aux cmp_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"cmp	al,bl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al] [bl]            \
-	value [al]                      \
+u8 cmp_byte_asm(u32 *flags, u8 d, u8 s);
+#pragma aux cmp_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"cmp	al,bl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al] [bl]		\
+	value [al]			\
 	modify exact [al bl];
 
-u16     cmp_word_asm(u32 *flags,u16 d, u16 s);
-#pragma aux cmp_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"cmp	ax,bx"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] [bx]            \
-	value [ax]                      \
+u16 cmp_word_asm(u32 *flags, u16 d, u16 s);
+#pragma aux cmp_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"cmp	ax,bx"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax] [bx]		\
+	value [ax]			\
 	modify exact [ax bx];
 
-u32     cmp_long_asm(u32 *flags,u32 d, u32 s);
-#pragma aux cmp_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"cmp	eax,ebx"                \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax] [ebx]          \
-	value [eax]                     \
+u32 cmp_long_asm(u32 *flags, u32 d, u32 s);
+#pragma aux cmp_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"cmp	eax,ebx"		\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax] [ebx]		\
+	value [eax]			\
 	modify exact [eax ebx];
 
-u8      daa_byte_asm(u32 *flags,u8 d);
-#pragma aux daa_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"daa"                  			\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al]            		\
-	value [al]                      \
+u8 daa_byte_asm(u32 *flags, u8 d);
+#pragma aux daa_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"daa"				\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al]			\
+	value [al]			\
 	modify exact [al];
 
-u8      das_byte_asm(u32 *flags,u8 d);
-#pragma aux das_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"das"                  			\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al]            		\
-	value [al]                      \
+u8 das_byte_asm(u32 *flags, u8 d);
+#pragma aux das_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"das"				\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al]			\
+	value [al]			\
 	modify exact [al];
 
-u8      dec_byte_asm(u32 *flags,u8 d);
-#pragma aux dec_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"dec	al"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al]            		\
-	value [al]                      \
+u8 dec_byte_asm(u32 *flags, u8 d);
+#pragma aux dec_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"dec	al"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al]			\
+	value [al]			\
 	modify exact [al];
 
-u16     dec_word_asm(u32 *flags,u16 d);
-#pragma aux dec_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"dec	ax"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax]            		\
-	value [ax]                      \
+u16 dec_word_asm(u32 *flags, u16 d);
+#pragma aux dec_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"dec	ax"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax]			\
+	value [ax]			\
 	modify exact [ax];
 
-u32     dec_long_asm(u32 *flags,u32 d);
-#pragma aux dec_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"dec	eax"                	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax]          		\
-	value [eax]                     \
+u32 dec_long_asm(u32 *flags, u32 d);
+#pragma aux dec_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"dec	eax"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax]		\
+	value [eax]			\
 	modify exact [eax];
 
-u8      inc_byte_asm(u32 *flags,u8 d);
-#pragma aux inc_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"inc	al"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al]            		\
-	value [al]                      \
+u8 inc_byte_asm(u32 *flags, u8 d);
+#pragma aux inc_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"inc	al"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al]			\
+	value [al]			\
 	modify exact [al];
 
-u16     inc_word_asm(u32 *flags,u16 d);
-#pragma aux inc_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"inc	ax"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax]            		\
-	value [ax]                      \
+u16 inc_word_asm(u32 *flags, u16 d);
+#pragma aux inc_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"inc	ax"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax]			\
+	value [ax]			\
 	modify exact [ax];
 
-u32     inc_long_asm(u32 *flags,u32 d);
-#pragma aux inc_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"inc	eax"                	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax]          		\
-	value [eax]                     \
+u32 inc_long_asm(u32 *flags, u32 d);
+#pragma aux inc_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"inc	eax"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax]		\
+	value [eax]			\
 	modify exact [eax];
 
-u8      or_byte_asm(u32 *flags,u8 d, u8 s);
-#pragma aux or_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"or	al,bl"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al] [bl]            \
-	value [al]                      \
+u8 or_byte_asm(u32 *flags, u8 d, u8 s);
+#pragma aux or_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"or	al,bl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al] [bl]		\
+	value [al]			\
 	modify exact [al bl];
 
-u16     or_word_asm(u32 *flags,u16 d, u16 s);
-#pragma aux or_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"or	ax,bx"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] [bx]            \
-	value [ax]                      \
+u16 or_word_asm(u32 *flags, u16 d, u16 s);
+#pragma aux or_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"or	ax,bx"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax] [bx]		\
+	value [ax]			\
 	modify exact [ax bx];
 
-u32     or_long_asm(u32 *flags,u32 d, u32 s);
-#pragma aux or_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"or	eax,ebx"                	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax] [ebx]          \
-	value [eax]                     \
+u32 or_long_asm(u32 *flags, u32 d, u32 s);
+#pragma aux or_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"or	eax,ebx"		\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax] [ebx]		\
+	value [eax]			\
 	modify exact [eax ebx];
 
-u8      neg_byte_asm(u32 *flags,u8 d);
-#pragma aux neg_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"neg	al"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al]            		\
-	value [al]                      \
+u8 neg_byte_asm(u32 *flags, u8 d);
+#pragma aux neg_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"neg	al"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al]			\
+	value [al]			\
 	modify exact [al];
 
-u16     neg_word_asm(u32 *flags,u16 d);
-#pragma aux neg_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"neg	ax"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax]            		\
-	value [ax]                      \
+u16 neg_word_asm(u32 *flags, u16 d);
+#pragma aux neg_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"neg	ax"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax]			\
+	value [ax]			\
 	modify exact [ax];
 
-u32     neg_long_asm(u32 *flags,u32 d);
-#pragma aux neg_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"neg	eax"                	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax]          		\
-	value [eax]                     \
+u32 neg_long_asm(u32 *flags, u32 d);
+#pragma aux neg_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"neg	eax"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax]		\
+	value [eax]			\
 	modify exact [eax];
 
-u8      not_byte_asm(u32 *flags,u8 d);
-#pragma aux not_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"not	al"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al]            		\
-	value [al]                      \
+u8 not_byte_asm(u32 *flags, u8 d);
+#pragma aux not_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"not	al"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al]			\
+	value [al]			\
 	modify exact [al];
 
-u16     not_word_asm(u32 *flags,u16 d);
-#pragma aux not_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"not	ax"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax]            		\
-	value [ax]                      \
+u16 not_word_asm(u32 *flags, u16 d);
+#pragma aux not_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"not	ax"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax]			\
+	value [ax]			\
 	modify exact [ax];
 
-u32     not_long_asm(u32 *flags,u32 d);
-#pragma aux not_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"not	eax"                	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax]          		\
-	value [eax]                     \
+u32 not_long_asm(u32 *flags, u32 d);
+#pragma aux not_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"not	eax"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax]		\
+	value [eax]			\
 	modify exact [eax];
 
-u8      rcl_byte_asm(u32 *flags,u8 d, u8 s);
-#pragma aux rcl_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"rcl	al,cl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al] [cl]            \
-	value [al]                      \
+u8 rcl_byte_asm(u32 *flags, u8 d, u8 s);
+#pragma aux rcl_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"rcl	al,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al] [cl]		\
+	value [al]			\
 	modify exact [al cl];
 
-u16     rcl_word_asm(u32 *flags,u16 d, u8 s);
-#pragma aux rcl_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"rcl	ax,cl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] [cl]            \
-	value [ax]                      \
+u16 rcl_word_asm(u32 *flags, u16 d, u8 s);
+#pragma aux rcl_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"rcl	ax,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax] [cl]		\
+	value [ax]			\
 	modify exact [ax cl];
 
-u32     rcl_long_asm(u32 *flags,u32 d, u8 s);
-#pragma aux rcl_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"rcl	eax,cl"                	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax] [cl]          	\
-	value [eax]                     \
+u32 rcl_long_asm(u32 *flags, u32 d, u8 s);
+#pragma aux rcl_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"rcl	eax,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax] [cl]		\
+	value [eax]			\
 	modify exact [eax cl];
 
-u8      rcr_byte_asm(u32 *flags,u8 d, u8 s);
-#pragma aux rcr_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"rcr	al,cl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al] [cl]            \
-	value [al]                      \
+u8 rcr_byte_asm(u32 *flags, u8 d, u8 s);
+#pragma aux rcr_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"rcr	al,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al] [cl]		\
+	value [al]			\
 	modify exact [al cl];
 
-u16     rcr_word_asm(u32 *flags,u16 d, u8 s);
-#pragma aux rcr_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"rcr	ax,cl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] [cl]            \
-	value [ax]                      \
+u16 rcr_word_asm(u32 *flags, u16 d, u8 s);
+#pragma aux rcr_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"rcr	ax,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax] [cl]		\
+	value [ax]			\
 	modify exact [ax cl];
 
-u32     rcr_long_asm(u32 *flags,u32 d, u8 s);
-#pragma aux rcr_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"rcr	eax,cl"                	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax] [cl]          	\
-	value [eax]                     \
+u32 rcr_long_asm(u32 *flags, u32 d, u8 s);
+#pragma aux rcr_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"rcr	eax,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax] [cl]		\
+	value [eax]			\
 	modify exact [eax cl];
 
-u8      rol_byte_asm(u32 *flags,u8 d, u8 s);
-#pragma aux rol_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"rol	al,cl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al] [cl]            \
-	value [al]                      \
+u8 rol_byte_asm(u32 *flags, u8 d, u8 s);
+#pragma aux rol_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"rol	al,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al] [cl]		\
+	value [al]			\
 	modify exact [al cl];
 
-u16     rol_word_asm(u32 *flags,u16 d, u8 s);
-#pragma aux rol_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"rol	ax,cl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] [cl]            \
-	value [ax]                      \
+u16 rol_word_asm(u32 *flags, u16 d, u8 s);
+#pragma aux rol_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"rol	ax,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax] [cl]		\
+	value [ax]			\
 	modify exact [ax cl];
 
-u32     rol_long_asm(u32 *flags,u32 d, u8 s);
-#pragma aux rol_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"rol	eax,cl"                	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax] [cl]          	\
-	value [eax]                     \
+u32 rol_long_asm(u32 *flags, u32 d, u8 s);
+#pragma aux rol_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"rol	eax,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax] [cl]		\
+	value [eax]			\
 	modify exact [eax cl];
 
-u8      ror_byte_asm(u32 *flags,u8 d, u8 s);
-#pragma aux ror_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"ror	al,cl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al] [cl]            \
-	value [al]                      \
+u8 ror_byte_asm(u32 *flags, u8 d, u8 s);
+#pragma aux ror_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"ror	al,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al] [cl]		\
+	value [al]			\
 	modify exact [al cl];
 
-u16     ror_word_asm(u32 *flags,u16 d, u8 s);
-#pragma aux ror_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"ror	ax,cl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] [cl]            \
-	value [ax]                      \
+u16 ror_word_asm(u32 *flags, u16 d, u8 s);
+#pragma aux ror_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"ror	ax,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax] [cl]		\
+	value [ax]			\
 	modify exact [ax cl];
 
-u32     ror_long_asm(u32 *flags,u32 d, u8 s);
-#pragma aux ror_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"ror	eax,cl"                	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax] [cl]          	\
-	value [eax]                     \
+u32 ror_long_asm(u32 *flags, u32 d, u8 s);
+#pragma aux ror_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"ror	eax,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax] [cl]		\
+	value [eax]			\
 	modify exact [eax cl];
 
-u8      shl_byte_asm(u32 *flags,u8 d, u8 s);
-#pragma aux shl_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"shl	al,cl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al] [cl]            \
-	value [al]                      \
+u8 shl_byte_asm(u32 *flags, u8 d, u8 s);
+#pragma aux shl_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"shl	al,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al] [cl]		\
+	value [al]			\
 	modify exact [al cl];
 
-u16     shl_word_asm(u32 *flags,u16 d, u8 s);
-#pragma aux shl_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"shl	ax,cl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] [cl]            \
-	value [ax]                      \
+u16 shl_word_asm(u32 *flags, u16 d, u8 s);
+#pragma aux shl_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"shl	ax,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax] [cl]		\
+	value [ax]			\
 	modify exact [ax cl];
 
-u32     shl_long_asm(u32 *flags,u32 d, u8 s);
-#pragma aux shl_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"shl	eax,cl"                	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax] [cl]          	\
-	value [eax]                     \
+u32 shl_long_asm(u32 *flags, u32 d, u8 s);
+#pragma aux shl_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"shl	eax,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax] [cl]		\
+	value [eax]			\
 	modify exact [eax cl];
 
-u8      shr_byte_asm(u32 *flags,u8 d, u8 s);
-#pragma aux shr_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"shr	al,cl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al] [cl]            \
-	value [al]                      \
+u8 shr_byte_asm(u32 *flags, u8 d, u8 s);
+#pragma aux shr_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"shr	al,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al] [cl]		\
+	value [al]			\
 	modify exact [al cl];
 
-u16     shr_word_asm(u32 *flags,u16 d, u8 s);
-#pragma aux shr_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"shr	ax,cl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] [cl]            \
-	value [ax]                      \
+u16 shr_word_asm(u32 *flags, u16 d, u8 s);
+#pragma aux shr_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"shr	ax,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax] [cl]		\
+	value [ax]			\
 	modify exact [ax cl];
 
-u32     shr_long_asm(u32 *flags,u32 d, u8 s);
-#pragma aux shr_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"shr	eax,cl"                	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax] [cl]          	\
-	value [eax]                     \
+u32 shr_long_asm(u32 *flags, u32 d, u8 s);
+#pragma aux shr_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"shr	eax,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax] [cl]		\
+	value [eax]			\
 	modify exact [eax cl];
 
-u8      sar_byte_asm(u32 *flags,u8 d, u8 s);
-#pragma aux sar_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"sar	al,cl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al] [cl]            \
-	value [al]                      \
+u8 sar_byte_asm(u32 *flags, u8 d, u8 s);
+#pragma aux sar_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"sar	al,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al] [cl]		\
+	value [al]			\
 	modify exact [al cl];
 
-u16     sar_word_asm(u32 *flags,u16 d, u8 s);
-#pragma aux sar_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"sar	ax,cl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] [cl]            \
-	value [ax]                      \
+u16 sar_word_asm(u32 *flags, u16 d, u8 s);
+#pragma aux sar_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"sar	ax,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax] [cl]		\
+	value [ax]			\
 	modify exact [ax cl];
 
-u32     sar_long_asm(u32 *flags,u32 d, u8 s);
-#pragma aux sar_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"sar	eax,cl"                	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax] [cl]          	\
-	value [eax]                     \
+u32 sar_long_asm(u32 *flags, u32 d, u8 s);
+#pragma aux sar_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"sar	eax,cl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax] [cl]		\
+	value [eax]			\
 	modify exact [eax cl];
 
-u16		shld_word_asm(u32 *flags,u16 d, u16 fill, u8 s);
-#pragma aux shld_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"shld	ax,dx,cl"               \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] [dx] [cl]       \
-	value [ax]                      \
+u16 shld_word_asm(u32 *flags, u16 d, u16 fill, u8 s);
+#pragma aux shld_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"shld	ax,dx,cl"		\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax] [dx] [cl]	\
+	value [ax]			\
 	modify exact [ax dx cl];
 
-u32     shld_long_asm(u32 *flags,u32 d, u32 fill, u8 s);
-#pragma aux shld_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"shld	eax,edx,cl"             \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax] [edx] [cl]     \
-	value [eax]                     \
+u32 shld_long_asm(u32 *flags, u32 d, u32 fill, u8 s);
+#pragma aux shld_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"shld	eax,edx,cl"		\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax] [edx] [cl]	\
+	value [eax]			\
 	modify exact [eax edx cl];
 
-u16		shrd_word_asm(u32 *flags,u16 d, u16 fill, u8 s);
-#pragma aux shrd_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"shrd	ax,dx,cl"               \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] [dx] [cl]       \
-	value [ax]                      \
+u16 shrd_word_asm(u32 *flags, u16 d, u16 fill, u8 s);
+#pragma aux shrd_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"shrd	ax,dx,cl"		\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax] [dx] [cl]	\
+	value [ax]			\
 	modify exact [ax dx cl];
 
-u32     shrd_long_asm(u32 *flags,u32 d, u32 fill, u8 s);
-#pragma aux shrd_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"shrd	eax,edx,cl"             \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax] [edx] [cl]     \
-	value [eax]                     \
+u32 shrd_long_asm(u32 *flags, u32 d, u32 fill, u8 s);
+#pragma aux shrd_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"shrd	eax,edx,cl"		\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax] [edx] [cl]	\
+	value [eax]			\
 	modify exact [eax edx cl];
 
-u8      sbb_byte_asm(u32 *flags,u8 d, u8 s);
-#pragma aux sbb_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"sbb	al,bl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al] [bl]            \
-	value [al]                      \
+u8 sbb_byte_asm(u32 *flags, u8 d, u8 s);
+#pragma aux sbb_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"sbb	al,bl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al] [bl]		\
+	value [al]			\
 	modify exact [al bl];
 
-u16     sbb_word_asm(u32 *flags,u16 d, u16 s);
-#pragma aux sbb_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"sbb	ax,bx"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] [bx]            \
-	value [ax]                      \
+u16 sbb_word_asm(u32 *flags, u16 d, u16 s);
+#pragma aux sbb_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"sbb	ax,bx"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax] [bx]		\
+	value [ax]			\
 	modify exact [ax bx];
 
-u32     sbb_long_asm(u32 *flags,u32 d, u32 s);
-#pragma aux sbb_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"sbb	eax,ebx"                \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax] [ebx]          \
-	value [eax]                     \
+u32 sbb_long_asm(u32 *flags, u32 d, u32 s);
+#pragma aux sbb_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"sbb	eax,ebx"		\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax] [ebx]		\
+	value [eax]			\
 	modify exact [eax ebx];
 
-u8      sub_byte_asm(u32 *flags,u8 d, u8 s);
-#pragma aux sub_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"sub	al,bl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al] [bl]            \
-	value [al]                      \
+u8 sub_byte_asm(u32 *flags, u8 d, u8 s);
+#pragma aux sub_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"sub	al,bl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al] [bl]		\
+	value [al]			\
 	modify exact [al bl];
 
-u16     sub_word_asm(u32 *flags,u16 d, u16 s);
-#pragma aux sub_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"sub	ax,bx"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] [bx]            \
-	value [ax]                      \
+u16 sub_word_asm(u32 *flags, u16 d, u16 s);
+#pragma aux sub_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"sub	ax,bx"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax] [bx]		\
+	value [ax]			\
 	modify exact [ax bx];
 
-u32     sub_long_asm(u32 *flags,u32 d, u32 s);
-#pragma aux sub_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"sub	eax,ebx"                \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax] [ebx]          \
-	value [eax]                     \
+u32 sub_long_asm(u32 *flags, u32 d, u32 s);
+#pragma aux sub_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"sub	eax,ebx"		\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax] [ebx]		\
+	value [eax]			\
 	modify exact [eax ebx];
 
-void	test_byte_asm(u32 *flags,u8 d, u8 s);
-#pragma aux test_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"test	al,bl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al] [bl]            \
+void test_byte_asm(u32 *flags, u8 d, u8 s);
+#pragma aux test_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"test	al,bl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al] [bl]		\
 	modify exact [al bl];
 
-void	test_word_asm(u32 *flags,u16 d, u16 s);
-#pragma aux test_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"test	ax,bx"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] [bx]            \
+void test_word_asm(u32 *flags, u16 d, u16 s);
+#pragma aux test_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"test	ax,bx"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax] [bx]		\
 	modify exact [ax bx];
 
-void	test_long_asm(u32 *flags,u32 d, u32 s);
-#pragma aux test_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"test	eax,ebx"                \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax] [ebx]          \
+void test_long_asm(u32 *flags, u32 d, u32 s);
+#pragma aux test_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"test	eax,ebx"		\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax] [ebx]		\
 	modify exact [eax ebx];
 
-u8      xor_byte_asm(u32 *flags,u8 d, u8 s);
-#pragma aux xor_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"xor	al,bl"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [al] [bl]            \
-	value [al]                      \
+u8 xor_byte_asm(u32 *flags, u8 d, u8 s);
+#pragma aux xor_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"xor	al,bl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [al] [bl]		\
+	value [al]			\
 	modify exact [al bl];
 
-u16     xor_word_asm(u32 *flags,u16 d, u16 s);
-#pragma aux xor_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"xor	ax,bx"                  \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [ax] [bx]            \
-	value [ax]                      \
+u16 xor_word_asm(u32 *flags, u16 d, u16 s);
+#pragma aux xor_word_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"xor	ax,bx"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [ax] [bx]		\
+	value [ax]			\
 	modify exact [ax bx];
 
-u32     xor_long_asm(u32 *flags,u32 d, u32 s);
-#pragma aux xor_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"xor	eax,ebx"                \
-	"pushf"                         \
-	"pop	[edi]"            		\
-	parm [edi] [eax] [ebx]          \
-	value [eax]                     \
+u32 xor_long_asm(u32 *flags, u32 d, u32 s);
+#pragma aux xor_long_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"xor	eax,ebx"		\
+	"pushf"				\
+	"pop	[edi]"			\
+	parm [edi] [eax] [ebx]		\
+	value [eax]			\
 	modify exact [eax ebx];
 
-void    imul_byte_asm(u32 *flags,u16 *ax,u8 d,u8 s);
-#pragma aux imul_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"imul	bl"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	"mov	[esi],ax"				\
-	parm [edi] [esi] [al] [bl]      \
+void imul_byte_asm(u32 *flags, u16 *ax, u8 d, u8 s);
+#pragma aux imul_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"imul	bl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	"mov	[esi],ax"		\
+	parm [edi] [esi] [al] [bl]	\
 	modify exact [esi ax bl];
 
-void    imul_word_asm(u32 *flags,u16 *ax,u16 *dx,u16 d,u16 s);
+void imul_word_asm(u32 *flags, u16 *ax, u16 *dx, u16 d, u16 s);
 #pragma aux imul_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"imul	bx"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	"mov	[esi],ax"				\
-	"mov	[ecx],dx"				\
-	parm [edi] [esi] [ecx] [ax] [bx]\
+	"push	[edi]"				\
+	"popf"					\
+	"imul	bx"				\
+	"pushf"					\
+	"pop	[edi]"				\
+	"mov	[esi],ax"			\
+	"mov	[ecx],dx"			\
+	parm [edi] [esi] [ecx] [ax] [bx]	\
 	modify exact [esi edi ax bx dx];
 
-void    imul_long_asm(u32 *flags,u32 *eax,u32 *edx,u32 d,u32 s);
+void imul_long_asm(u32 *flags, u32 *eax, u32 *edx, u32 d, u32 s);
 #pragma aux imul_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"imul	ebx"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	"mov	[esi],eax"				\
-	"mov	[ecx],edx"				\
-	parm [edi] [esi] [ecx] [eax] [ebx] \
+	"push	[edi]"				\
+	"popf"					\
+	"imul	ebx"				\
+	"pushf"					\
+	"pop	[edi]"				\
+	"mov	[esi],eax"			\
+	"mov	[ecx],edx"			\
+	parm [edi] [esi] [ecx] [eax] [ebx]	\
 	modify exact [esi edi eax ebx edx];
 
-void    mul_byte_asm(u32 *flags,u16 *ax,u8 d,u8 s);
-#pragma aux mul_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"mul	bl"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	"mov	[esi],ax"				\
-	parm [edi] [esi] [al] [bl]      \
+void mul_byte_asm(u32 *flags, u16 *ax, u8 d, u8 s);
+#pragma aux mul_byte_asm =		\
+	"push	[edi]"			\
+	"popf"				\
+	"mul	bl"			\
+	"pushf"				\
+	"pop	[edi]"			\
+	"mov	[esi],ax"		\
+	parm [edi] [esi] [al] [bl]	\
 	modify exact [esi ax bl];
 
-void    mul_word_asm(u32 *flags,u16 *ax,u16 *dx,u16 d,u16 s);
+void mul_word_asm(u32 *flags, u16 *ax, u16 *dx, u16 d, u16 s);
 #pragma aux mul_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"mul	bx"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	"mov	[esi],ax"				\
-	"mov	[ecx],dx"				\
-	parm [edi] [esi] [ecx] [ax] [bx]\
+	"push	[edi]"				\
+	"popf"					\
+	"mul	bx"				\
+	"pushf"					\
+	"pop	[edi]"				\
+	"mov	[esi],ax"			\
+	"mov	[ecx],dx"			\
+	parm [edi] [esi] [ecx] [ax] [bx]	\
 	modify exact [esi edi ax bx dx];
 
-void    mul_long_asm(u32 *flags,u32 *eax,u32 *edx,u32 d,u32 s);
+void mul_long_asm(u32 *flags, u32 *eax, u32 *edx, u32 d, u32 s);
 #pragma aux mul_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"mul	ebx"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	"mov	[esi],eax"				\
-	"mov	[ecx],edx"				\
-	parm [edi] [esi] [ecx] [eax] [ebx] \
+	"push	[edi]"				\
+	"popf"					\
+	"mul	ebx"				\
+	"pushf"					\
+	"pop	[edi]"				\
+	"mov	[esi],eax"			\
+	"mov	[ecx],edx"			\
+	parm [edi] [esi] [ecx] [eax] [ebx]	\
 	modify exact [esi edi eax ebx edx];
 
-void	idiv_byte_asm(u32 *flags,u8 *al,u8 *ah,u16 d,u8 s);
+void idiv_byte_asm(u32 *flags, u8 *al, u8 *ah, u16 d, u8 s);
 #pragma aux idiv_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"idiv	bl"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	"mov	[esi],al"				\
-	"mov	[ecx],ah"				\
-	parm [edi] [esi] [ecx] [ax] [bl]\
+	"push	[edi]"				\
+	"popf"					\
+	"idiv	bl"				\
+	"pushf"					\
+	"pop	[edi]"				\
+	"mov	[esi],al"			\
+	"mov	[ecx],ah"			\
+	parm [edi] [esi] [ecx] [ax] [bl]	\
 	modify exact [esi edi ax bl];
 
-void	idiv_word_asm(u32 *flags,u16 *ax,u16 *dx,u16 dlo,u16 dhi,u16 s);
+void idiv_word_asm(u32 *flags, u16 *ax, u16 *dx, u16 dlo, u16 dhi, u16 s);
 #pragma aux idiv_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"idiv	bx"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	"mov	[esi],ax"				\
-	"mov	[ecx],dx"				\
-	parm [edi] [esi] [ecx] [ax] [dx] [bx]\
+	"push	[edi]"				\
+	"popf"					\
+	"idiv	bx"				\
+	"pushf"					\
+	"pop	[edi]"				\
+	"mov	[esi],ax"			\
+	"mov	[ecx],dx"			\
+	parm [edi] [esi] [ecx] [ax] [dx] [bx]	\
 	modify exact [esi edi ax dx bx];
 
-void	idiv_long_asm(u32 *flags,u32 *eax,u32 *edx,u32 dlo,u32 dhi,u32 s);
-#pragma aux idiv_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"idiv	ebx"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
+void idiv_long_asm(u32 *flags, u32 *eax, u32 *edx, u32 dlo, u32 dhi, u32 s);
+#pragma aux idiv_long_asm =				\
+	"push	[edi]"					\
+	"popf"						\
+	"idiv	ebx"					\
+	"pushf"						\
+	"pop	[edi]"					\
 	"mov	[esi],eax"				\
 	"mov	[ecx],edx"				\
-	parm [edi] [esi] [ecx] [eax] [edx] [ebx]\
+	parm [edi] [esi] [ecx] [eax] [edx] [ebx]	\
 	modify exact [esi edi eax edx ebx];
 
-void	div_byte_asm(u32 *flags,u8 *al,u8 *ah,u16 d,u8 s);
+void div_byte_asm(u32 *flags, u8 *al, u8 *ah, u16 d, u8 s);
 #pragma aux div_byte_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"div	bl"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	"mov	[esi],al"				\
-	"mov	[ecx],ah"				\
-	parm [edi] [esi] [ecx] [ax] [bl]\
+	"push	[edi]"				\
+	"popf"					\
+	"div	bl"				\
+	"pushf"					\
+	"pop	[edi]"				\
+	"mov	[esi],al"			\
+	"mov	[ecx],ah"			\
+	parm [edi] [esi] [ecx] [ax] [bl]	\
 	modify exact [esi edi ax bl];
 
-void	div_word_asm(u32 *flags,u16 *ax,u16 *dx,u16 dlo,u16 dhi,u16 s);
+void div_word_asm(u32 *flags, u16 *ax, u16 *dx, u16 dlo, u16 dhi, u16 s);
 #pragma aux div_word_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"div	bx"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
-	"mov	[esi],ax"				\
-	"mov	[ecx],dx"				\
-	parm [edi] [esi] [ecx] [ax] [dx] [bx]\
+	"push	[edi]"				\
+	"popf"					\
+	"div	bx"				\
+	"pushf"					\
+	"pop	[edi]"				\
+	"mov	[esi],ax"			\
+	"mov	[ecx],dx"			\
+	parm [edi] [esi] [ecx] [ax] [dx] [bx]	\
 	modify exact [esi edi ax dx bx];
 
-void	div_long_asm(u32 *flags,u32 *eax,u32 *edx,u32 dlo,u32 dhi,u32 s);
-#pragma aux div_long_asm =			\
-	"push	[edi]"            		\
-	"popf"                         	\
-	"div	ebx"                  	\
-	"pushf"                         \
-	"pop	[edi]"            		\
+void div_long_asm(u32 *flags, u32 *eax, u32 *edx, u32 dlo, u32 dhi, u32 s);
+#pragma aux div_long_asm =				\
+	"push	[edi]"					\
+	"popf"						\
+	"div	ebx"					\
+	"pushf"						\
+	"pop	[edi]"					\
 	"mov	[esi],eax"				\
 	"mov	[ecx],edx"				\
-	parm [edi] [esi] [ecx] [eax] [edx] [ebx]\
+	parm [edi] [esi] [ecx] [eax] [edx] [ebx]	\
 	modify exact [esi edi eax edx ebx];
 
 #endif
diff --git a/src/device/oprom/x86emu/prim_ops.c b/src/device/oprom/x86emu/prim_ops.c
index 8b2c38a..4fb6407 100644
--- a/src/device/oprom/x86emu/prim_ops.c
+++ b/src/device/oprom/x86emu/prim_ops.c
@@ -1920,7 +1920,7 @@
 ****************************************************************************/
 void imul_long_direct(u32 *res_lo, u32* res_hi,u32 d, u32 s)
 {
-#ifdef  __HAS_LONG_LONG__
+#ifdef __HAS_LONG_LONG__
     s64 res = (s64)(s32)d * (s64)(s32)s;
 
     *res_lo = (u32)res;
@@ -2012,7 +2012,7 @@
 ****************************************************************************/
 void mul_long(u32 s)
 {
-#ifdef  __HAS_LONG_LONG__
+#ifdef __HAS_LONG_LONG__
     u64 res = (u64)M.x86.R_EAX * s;
 
     M.x86.R_EAX = (u32)res;
@@ -2099,7 +2099,7 @@
 ****************************************************************************/
 void idiv_long(u32 s)
 {
-#ifdef  __HAS_LONG_LONG__
+#ifdef __HAS_LONG_LONG__
     s64 dvd, div, mod;
 
     dvd = (((s64)M.x86.R_EDX) << 32) | M.x86.R_EAX;
@@ -2224,7 +2224,7 @@
 ****************************************************************************/
 void div_long(u32 s)
 {
-#ifdef  __HAS_LONG_LONG__
+#ifdef __HAS_LONG_LONG__
     u64 dvd, div, mod;
 
     dvd = (((u64)M.x86.R_EDX) << 32) | M.x86.R_EAX;
diff --git a/src/device/oprom/x86emu/prim_ops.h b/src/device/oprom/x86emu/prim_ops.h
index 7230a71..9074186 100644
--- a/src/device/oprom/x86emu/prim_ops.h
+++ b/src/device/oprom/x86emu/prim_ops.h
@@ -1,10 +1,10 @@
 /****************************************************************************
 *
-*						Realmode X86 Emulator Library
+*			Realmode X86 Emulator Library
 *
-*            	Copyright (C) 1996-1999 SciTech Software, Inc.
-* 				     Copyright (C) David Mosberger-Tang
-* 					   Copyright (C) 1999 Egbert Eich
+*		Copyright (C) 1996-1999 SciTech Software, Inc.
+*		Copyright (C) David Mosberger-Tang
+*		Copyright (C) 1999 Egbert Eich
 *
 *  ========================================================================
 *
@@ -28,11 +28,11 @@
 *
 *  ========================================================================
 *
-* Language:		ANSI C
+* Language:	ANSI C
 * Environment:	Any
-* Developer:    Kendall Bennett
+* Developer:	Kendall Bennett
 *
-* Description:  Header file for primitive operation functions.
+* Description:	Header file for primitive operation functions.
 *
 ****************************************************************************/
 
@@ -41,192 +41,191 @@
 
 #include "prim_asm.h"
 
-#ifdef  __cplusplus
-extern "C" {            			/* Use "C" linkage when in C++ mode */
+#ifdef __cplusplus
+extern "C" {		/* Use "C" linkage when in C++ mode */
 #endif
 
-u16     aaa_word (u16 d);
-u16     aas_word (u16 d);
-u16     aad_word (u16 d);
-u16     aam_word (u8 d);
-u8      adc_byte (u8 d, u8 s);
-u16     adc_word (u16 d, u16 s);
-u32     adc_long (u32 d, u32 s);
-u8      add_byte (u8 d, u8 s);
-u16     add_word (u16 d, u16 s);
-u32     add_long (u32 d, u32 s);
-u8      and_byte (u8 d, u8 s);
-u16     and_word (u16 d, u16 s);
-u32     and_long (u32 d, u32 s);
-u8      cmp_byte (u8 d, u8 s);
-u16     cmp_word (u16 d, u16 s);
-u32     cmp_long (u32 d, u32 s);
-u8      daa_byte (u8 d);
-u8      das_byte (u8 d);
-u8      dec_byte (u8 d);
-u16     dec_word (u16 d);
-u32     dec_long (u32 d);
-u8      inc_byte (u8 d);
-u16     inc_word (u16 d);
-u32     inc_long (u32 d);
-u8      or_byte (u8 d, u8 s);
-u16     or_word (u16 d, u16 s);
-u32     or_long (u32 d, u32 s);
-u8      neg_byte (u8 s);
-u16     neg_word (u16 s);
-u32     neg_long (u32 s);
-u8      not_byte (u8 s);
-u16     not_word (u16 s);
-u32     not_long (u32 s);
-u8      rcl_byte (u8 d, u8 s);
-u16     rcl_word (u16 d, u8 s);
-u32     rcl_long (u32 d, u8 s);
-u8      rcr_byte (u8 d, u8 s);
-u16     rcr_word (u16 d, u8 s);
-u32     rcr_long (u32 d, u8 s);
-u8      rol_byte (u8 d, u8 s);
-u16     rol_word (u16 d, u8 s);
-u32     rol_long (u32 d, u8 s);
-u8      ror_byte (u8 d, u8 s);
-u16     ror_word (u16 d, u8 s);
-u32     ror_long (u32 d, u8 s);
-u8      shl_byte (u8 d, u8 s);
-u16     shl_word (u16 d, u8 s);
-u32     shl_long (u32 d, u8 s);
-u8      shr_byte (u8 d, u8 s);
-u16     shr_word (u16 d, u8 s);
-u32     shr_long (u32 d, u8 s);
-u8      sar_byte (u8 d, u8 s);
-u16     sar_word (u16 d, u8 s);
-u32     sar_long (u32 d, u8 s);
-u16     shld_word (u16 d, u16 fill, u8 s);
-u32     shld_long (u32 d, u32 fill, u8 s);
-u16     shrd_word (u16 d, u16 fill, u8 s);
-u32     shrd_long (u32 d, u32 fill, u8 s);
-u8      sbb_byte (u8 d, u8 s);
-u16     sbb_word (u16 d, u16 s);
-u32     sbb_long (u32 d, u32 s);
-u8      sub_byte (u8 d, u8 s);
-u16     sub_word (u16 d, u16 s);
-u32     sub_long (u32 d, u32 s);
-void    test_byte (u8 d, u8 s);
-void    test_word (u16 d, u16 s);
-void    test_long (u32 d, u32 s);
-u8      xor_byte (u8 d, u8 s);
-u16     xor_word (u16 d, u16 s);
-u32     xor_long (u32 d, u32 s);
-void    imul_byte (u8 s);
-void    imul_word (u16 s);
-void    imul_long (u32 s);
-void 	imul_long_direct(u32 *res_lo, u32* res_hi,u32 d, u32 s);
-void    mul_byte (u8 s);
-void    mul_word (u16 s);
-void    mul_long (u32 s);
-void    idiv_byte (u8 s);
-void    idiv_word (u16 s);
-void    idiv_long (u32 s);
-void    div_byte (u8 s);
-void    div_word (u16 s);
-void    div_long (u32 s);
-void    ins (int size);
-void    outs (int size);
-u16     mem_access_word (int addr);
-void    push_word (u16 w);
-void    push_long (u32 w);
-u16     pop_word (void);
-u32	pop_long (void);
-void	x86emu_cpuid (void);
+	u16 aaa_word(u16 d);
+	u16 aas_word(u16 d);
+	u16 aad_word(u16 d);
+	u16 aam_word(u8 d);
+	u8 adc_byte(u8 d, u8 s);
+	u16 adc_word(u16 d, u16 s);
+	u32 adc_long(u32 d, u32 s);
+	u8 add_byte(u8 d, u8 s);
+	u16 add_word(u16 d, u16 s);
+	u32 add_long(u32 d, u32 s);
+	u8 and_byte(u8 d, u8 s);
+	u16 and_word(u16 d, u16 s);
+	u32 and_long(u32 d, u32 s);
+	u8 cmp_byte(u8 d, u8 s);
+	u16 cmp_word(u16 d, u16 s);
+	u32 cmp_long(u32 d, u32 s);
+	u8 daa_byte(u8 d);
+	u8 das_byte(u8 d);
+	u8 dec_byte(u8 d);
+	u16 dec_word(u16 d);
+	u32 dec_long(u32 d);
+	u8 inc_byte(u8 d);
+	u16 inc_word(u16 d);
+	u32 inc_long(u32 d);
+	u8 or_byte(u8 d, u8 s);
+	u16 or_word(u16 d, u16 s);
+	u32 or_long(u32 d, u32 s);
+	u8 neg_byte(u8 s);
+	u16 neg_word(u16 s);
+	u32 neg_long(u32 s);
+	u8 not_byte(u8 s);
+	u16 not_word(u16 s);
+	u32 not_long(u32 s);
+	u8 rcl_byte(u8 d, u8 s);
+	u16 rcl_word(u16 d, u8 s);
+	u32 rcl_long(u32 d, u8 s);
+	u8 rcr_byte(u8 d, u8 s);
+	u16 rcr_word(u16 d, u8 s);
+	u32 rcr_long(u32 d, u8 s);
+	u8 rol_byte(u8 d, u8 s);
+	u16 rol_word(u16 d, u8 s);
+	u32 rol_long(u32 d, u8 s);
+	u8 ror_byte(u8 d, u8 s);
+	u16 ror_word(u16 d, u8 s);
+	u32 ror_long(u32 d, u8 s);
+	u8 shl_byte(u8 d, u8 s);
+	u16 shl_word(u16 d, u8 s);
+	u32 shl_long(u32 d, u8 s);
+	u8 shr_byte(u8 d, u8 s);
+	u16 shr_word(u16 d, u8 s);
+	u32 shr_long(u32 d, u8 s);
+	u8 sar_byte(u8 d, u8 s);
+	u16 sar_word(u16 d, u8 s);
+	u32 sar_long(u32 d, u8 s);
+	u16 shld_word(u16 d, u16 fill, u8 s);
+	u32 shld_long(u32 d, u32 fill, u8 s);
+	u16 shrd_word(u16 d, u16 fill, u8 s);
+	u32 shrd_long(u32 d, u32 fill, u8 s);
+	u8 sbb_byte(u8 d, u8 s);
+	u16 sbb_word(u16 d, u16 s);
+	u32 sbb_long(u32 d, u32 s);
+	u8 sub_byte(u8 d, u8 s);
+	u16 sub_word(u16 d, u16 s);
+	u32 sub_long(u32 d, u32 s);
+	void test_byte(u8 d, u8 s);
+	void test_word(u16 d, u16 s);
+	void test_long(u32 d, u32 s);
+	u8 xor_byte(u8 d, u8 s);
+	u16 xor_word(u16 d, u16 s);
+	u32 xor_long(u32 d, u32 s);
+	void imul_byte(u8 s);
+	void imul_word(u16 s);
+	void imul_long(u32 s);
+	void imul_long_direct(u32 *res_lo, u32 *res_hi, u32 d, u32 s);
+	void mul_byte(u8 s);
+	void mul_word(u16 s);
+	void mul_long(u32 s);
+	void idiv_byte(u8 s);
+	void idiv_word(u16 s);
+	void idiv_long(u32 s);
+	void div_byte(u8 s);
+	void div_word(u16 s);
+	void div_long(u32 s);
+	void ins(int size);
+	void outs(int size);
+	u16 mem_access_word(int addr);
+	void push_word(u16 w);
+	void push_long(u32 w);
+	u16 pop_word(void);
+	u32 pop_long(void);
+	void x86emu_cpuid(void);
 
 #if  defined(__HAVE_INLINE_ASSEMBLER__) && !defined(PRIM_OPS_NO_REDEFINE_ASM)
 
-#define	aaa_word(d)		aaa_word_asm(&M.x86.R_EFLG,d)
-#define aas_word(d)		aas_word_asm(&M.x86.R_EFLG,d)
-#define aad_word(d)		aad_word_asm(&M.x86.R_EFLG,d)
-#define aam_word(d)		aam_word_asm(&M.x86.R_EFLG,d)
-#define adc_byte(d,s)	adc_byte_asm(&M.x86.R_EFLG,d,s)
-#define adc_word(d,s)	adc_word_asm(&M.x86.R_EFLG,d,s)
-#define adc_long(d,s)	adc_long_asm(&M.x86.R_EFLG,d,s)
-#define add_byte(d,s) 	add_byte_asm(&M.x86.R_EFLG,d,s)
-#define add_word(d,s)	add_word_asm(&M.x86.R_EFLG,d,s)
-#define add_long(d,s)	add_long_asm(&M.x86.R_EFLG,d,s)
-#define and_byte(d,s)	and_byte_asm(&M.x86.R_EFLG,d,s)
-#define and_word(d,s)	and_word_asm(&M.x86.R_EFLG,d,s)
-#define and_long(d,s)	and_long_asm(&M.x86.R_EFLG,d,s)
-#define cmp_byte(d,s)	cmp_byte_asm(&M.x86.R_EFLG,d,s)
-#define cmp_word(d,s)	cmp_word_asm(&M.x86.R_EFLG,d,s)
-#define cmp_long(d,s)	cmp_long_asm(&M.x86.R_EFLG,d,s)
-#define daa_byte(d)		daa_byte_asm(&M.x86.R_EFLG,d)
-#define das_byte(d)		das_byte_asm(&M.x86.R_EFLG,d)
-#define dec_byte(d)		dec_byte_asm(&M.x86.R_EFLG,d)
-#define dec_word(d)		dec_word_asm(&M.x86.R_EFLG,d)
-#define dec_long(d)		dec_long_asm(&M.x86.R_EFLG,d)
-#define inc_byte(d)		inc_byte_asm(&M.x86.R_EFLG,d)
-#define inc_word(d)		inc_word_asm(&M.x86.R_EFLG,d)
-#define inc_long(d)		inc_long_asm(&M.x86.R_EFLG,d)
-#define or_byte(d,s)	or_byte_asm(&M.x86.R_EFLG,d,s)
-#define or_word(d,s)	or_word_asm(&M.x86.R_EFLG,d,s)
-#define or_long(d,s)	or_long_asm(&M.x86.R_EFLG,d,s)
-#define neg_byte(s)		neg_byte_asm(&M.x86.R_EFLG,s)
-#define neg_word(s)		neg_word_asm(&M.x86.R_EFLG,s)
-#define neg_long(s)		neg_long_asm(&M.x86.R_EFLG,s)
-#define not_byte(s)		not_byte_asm(&M.x86.R_EFLG,s)
-#define not_word(s)		not_word_asm(&M.x86.R_EFLG,s)
-#define not_long(s)		not_long_asm(&M.x86.R_EFLG,s)
-#define rcl_byte(d,s)	rcl_byte_asm(&M.x86.R_EFLG,d,s)
-#define rcl_word(d,s)	rcl_word_asm(&M.x86.R_EFLG,d,s)
-#define rcl_long(d,s)	rcl_long_asm(&M.x86.R_EFLG,d,s)
-#define rcr_byte(d,s)	rcr_byte_asm(&M.x86.R_EFLG,d,s)
-#define rcr_word(d,s)	rcr_word_asm(&M.x86.R_EFLG,d,s)
-#define rcr_long(d,s)	rcr_long_asm(&M.x86.R_EFLG,d,s)
-#define rol_byte(d,s)	rol_byte_asm(&M.x86.R_EFLG,d,s)
-#define rol_word(d,s)	rol_word_asm(&M.x86.R_EFLG,d,s)
-#define rol_long(d,s)	rol_long_asm(&M.x86.R_EFLG,d,s)
-#define ror_byte(d,s)	ror_byte_asm(&M.x86.R_EFLG,d,s)
-#define ror_word(d,s)	ror_word_asm(&M.x86.R_EFLG,d,s)
-#define ror_long(d,s)	ror_long_asm(&M.x86.R_EFLG,d,s)
-#define shl_byte(d,s)	shl_byte_asm(&M.x86.R_EFLG,d,s)
-#define shl_word(d,s)	shl_word_asm(&M.x86.R_EFLG,d,s)
-#define shl_long(d,s)	shl_long_asm(&M.x86.R_EFLG,d,s)
-#define shr_byte(d,s)	shr_byte_asm(&M.x86.R_EFLG,d,s)
-#define shr_word(d,s)	shr_word_asm(&M.x86.R_EFLG,d,s)
-#define shr_long(d,s)	shr_long_asm(&M.x86.R_EFLG,d,s)
-#define sar_byte(d,s)	sar_byte_asm(&M.x86.R_EFLG,d,s)
-#define sar_word(d,s)	sar_word_asm(&M.x86.R_EFLG,d,s)
-#define sar_long(d,s)	sar_long_asm(&M.x86.R_EFLG,d,s)
-#define shld_word(d,fill,s)	shld_word_asm(&M.x86.R_EFLG,d,fill,s)
-#define shld_long(d,fill,s)	shld_long_asm(&M.x86.R_EFLG,d,fill,s)
-#define shrd_word(d,fill,s)	shrd_word_asm(&M.x86.R_EFLG,d,fill,s)
-#define shrd_long(d,fill,s)	shrd_long_asm(&M.x86.R_EFLG,d,fill,s)
-#define sbb_byte(d,s)	sbb_byte_asm(&M.x86.R_EFLG,d,s)
-#define sbb_word(d,s)	sbb_word_asm(&M.x86.R_EFLG,d,s)
-#define sbb_long(d,s)	sbb_long_asm(&M.x86.R_EFLG,d,s)
-#define sub_byte(d,s)	sub_byte_asm(&M.x86.R_EFLG,d,s)
-#define sub_word(d,s)	sub_word_asm(&M.x86.R_EFLG,d,s)
-#define sub_long(d,s)	sub_long_asm(&M.x86.R_EFLG,d,s)
-#define test_byte(d,s)	test_byte_asm(&M.x86.R_EFLG,d,s)
-#define test_word(d,s)	test_word_asm(&M.x86.R_EFLG,d,s)
-#define test_long(d,s)	test_long_asm(&M.x86.R_EFLG,d,s)
-#define xor_byte(d,s)	xor_byte_asm(&M.x86.R_EFLG,d,s)
-#define xor_word(d,s)	xor_word_asm(&M.x86.R_EFLG,d,s)
-#define xor_long(d,s)	xor_long_asm(&M.x86.R_EFLG,d,s)
-#define imul_byte(s)	imul_byte_asm(&M.x86.R_EFLG,&M.x86.R_AX,M.x86.R_AL,s)
-#define imul_word(s)	imul_word_asm(&M.x86.R_EFLG,&M.x86.R_AX,&M.x86.R_DX,M.x86.R_AX,s)
-#define imul_long(s)	imul_long_asm(&M.x86.R_EFLG,&M.x86.R_EAX,&M.x86.R_EDX,M.x86.R_EAX,s)
-#define imul_long_direct(res_lo,res_hi,d,s)	imul_long_asm(&M.x86.R_EFLG,res_lo,res_hi,d,s)
-#define mul_byte(s)		mul_byte_asm(&M.x86.R_EFLG,&M.x86.R_AX,M.x86.R_AL,s)
-#define mul_word(s)		mul_word_asm(&M.x86.R_EFLG,&M.x86.R_AX,&M.x86.R_DX,M.x86.R_AX,s)
-#define mul_long(s)		mul_long_asm(&M.x86.R_EFLG,&M.x86.R_EAX,&M.x86.R_EDX,M.x86.R_EAX,s)
-#define idiv_byte(s)	idiv_byte_asm(&M.x86.R_EFLG,&M.x86.R_AL,&M.x86.R_AH,M.x86.R_AX,s)
-#define idiv_word(s)	idiv_word_asm(&M.x86.R_EFLG,&M.x86.R_AX,&M.x86.R_DX,M.x86.R_AX,M.x86.R_DX,s)
-#define idiv_long(s)	idiv_long_asm(&M.x86.R_EFLG,&M.x86.R_EAX,&M.x86.R_EDX,M.x86.R_EAX,M.x86.R_EDX,s)
-#define div_byte(s)		div_byte_asm(&M.x86.R_EFLG,&M.x86.R_AL,&M.x86.R_AH,M.x86.R_AX,s)
-#define div_word(s)		div_word_asm(&M.x86.R_EFLG,&M.x86.R_AX,&M.x86.R_DX,M.x86.R_AX,M.x86.R_DX,s)
-#define div_long(s)		div_long_asm(&M.x86.R_EFLG,&M.x86.R_EAX,&M.x86.R_EDX,M.x86.R_EAX,M.x86.R_EDX,s)
+#define	aaa_word(d)		aaa_word_asm(&M.x86.R_EFLG, d)
+#define aas_word(d)		aas_word_asm(&M.x86.R_EFLG, d)
+#define aad_word(d)		aad_word_asm(&M.x86.R_EFLG, d)
+#define aam_word(d)		aam_word_asm(&M.x86.R_EFLG, d)
+#define adc_byte(d, s)	adc_byte_asm(&M.x86.R_EFLG, d, s)
+#define adc_word(d, s)	adc_word_asm(&M.x86.R_EFLG, d, s)
+#define adc_long(d, s)	adc_long_asm(&M.x86.R_EFLG, d, s)
+#define add_byte(d, s)	add_byte_asm(&M.x86.R_EFLG, d, s)
+#define add_word(d, s)	add_word_asm(&M.x86.R_EFLG, d, s)
+#define add_long(d, s)	add_long_asm(&M.x86.R_EFLG, d, s)
+#define and_byte(d, s)	and_byte_asm(&M.x86.R_EFLG, d, s)
+#define and_word(d, s)	and_word_asm(&M.x86.R_EFLG, d, s)
+#define and_long(d, s)	and_long_asm(&M.x86.R_EFLG, d, s)
+#define cmp_byte(d, s)	cmp_byte_asm(&M.x86.R_EFLG, d, s)
+#define cmp_word(d, s)	cmp_word_asm(&M.x86.R_EFLG, d, s)
+#define cmp_long(d, s)	cmp_long_asm(&M.x86.R_EFLG, d, s)
+#define daa_byte(d)		daa_byte_asm(&M.x86.R_EFLG, d)
+#define das_byte(d)		das_byte_asm(&M.x86.R_EFLG, d)
+#define dec_byte(d)		dec_byte_asm(&M.x86.R_EFLG, d)
+#define dec_word(d)		dec_word_asm(&M.x86.R_EFLG, d)
+#define dec_long(d)		dec_long_asm(&M.x86.R_EFLG, d)
+#define inc_byte(d)		inc_byte_asm(&M.x86.R_EFLG, d)
+#define inc_word(d)		inc_word_asm(&M.x86.R_EFLG, d)
+#define inc_long(d)		inc_long_asm(&M.x86.R_EFLG, d)
+#define or_byte(d, s)	or_byte_asm(&M.x86.R_EFLG, d, s)
+#define or_word(d, s)	or_word_asm(&M.x86.R_EFLG, d, s)
+#define or_long(d, s)	or_long_asm(&M.x86.R_EFLG, d, s)
+#define neg_byte(s)		neg_byte_asm(&M.x86.R_EFLG, s)
+#define neg_word(s)		neg_word_asm(&M.x86.R_EFLG, s)
+#define neg_long(s)		neg_long_asm(&M.x86.R_EFLG, s)
+#define not_byte(s)		not_byte_asm(&M.x86.R_EFLG, s)
+#define not_word(s)		not_word_asm(&M.x86.R_EFLG, s)
+#define not_long(s)		not_long_asm(&M.x86.R_EFLG, s)
+#define rcl_byte(d, s)	rcl_byte_asm(&M.x86.R_EFLG, d, s)
+#define rcl_word(d, s)	rcl_word_asm(&M.x86.R_EFLG, d, s)
+#define rcl_long(d, s)	rcl_long_asm(&M.x86.R_EFLG, d, s)
+#define rcr_byte(d, s)	rcr_byte_asm(&M.x86.R_EFLG, d, s)
+#define rcr_word(d, s)	rcr_word_asm(&M.x86.R_EFLG, d, s)
+#define rcr_long(d, s)	rcr_long_asm(&M.x86.R_EFLG, d, s)
+#define rol_byte(d, s)	rol_byte_asm(&M.x86.R_EFLG, d, s)
+#define rol_word(d, s)	rol_word_asm(&M.x86.R_EFLG, d, s)
+#define rol_long(d, s)	rol_long_asm(&M.x86.R_EFLG, d, s)
+#define ror_byte(d, s)	ror_byte_asm(&M.x86.R_EFLG, d, s)
+#define ror_word(d, s)	ror_word_asm(&M.x86.R_EFLG, d, s)
+#define ror_long(d, s)	ror_long_asm(&M.x86.R_EFLG, d, s)
+#define shl_byte(d, s)	shl_byte_asm(&M.x86.R_EFLG, d, s)
+#define shl_word(d, s)	shl_word_asm(&M.x86.R_EFLG, d, s)
+#define shl_long(d, s)	shl_long_asm(&M.x86.R_EFLG, d, s)
+#define shr_byte(d, s)	shr_byte_asm(&M.x86.R_EFLG, d, s)
+#define shr_word(d, s)	shr_word_asm(&M.x86.R_EFLG, d, s)
+#define shr_long(d, s)	shr_long_asm(&M.x86.R_EFLG, d, s)
+#define sar_byte(d, s)	sar_byte_asm(&M.x86.R_EFLG, d, s)
+#define sar_word(d, s)	sar_word_asm(&M.x86.R_EFLG, d, s)
+#define sar_long(d, s)	sar_long_asm(&M.x86.R_EFLG, d, s)
+#define shld_word(d, fill, s)	shld_word_asm(&M.x86.R_EFLG, d, fill, s)
+#define shld_long(d, fill, s)	shld_long_asm(&M.x86.R_EFLG, d, fill, s)
+#define shrd_word(d, fill, s)	shrd_word_asm(&M.x86.R_EFLG, d, fill, s)
+#define shrd_long(d, fill, s)	shrd_long_asm(&M.x86.R_EFLG, d, fill, s)
+#define sbb_byte(d, s)	sbb_byte_asm(&M.x86.R_EFLG, d, s)
+#define sbb_word(d, s)	sbb_word_asm(&M.x86.R_EFLG, d, s)
+#define sbb_long(d, s)	sbb_long_asm(&M.x86.R_EFLG, d, s)
+#define sub_byte(d, s)	sub_byte_asm(&M.x86.R_EFLG, d, s)
+#define sub_word(d, s)	sub_word_asm(&M.x86.R_EFLG, d, s)
+#define sub_long(d, s)	sub_long_asm(&M.x86.R_EFLG, d, s)
+#define test_byte(d, s)	test_byte_asm(&M.x86.R_EFLG, d, s)
+#define test_word(d, s)	test_word_asm(&M.x86.R_EFLG, d, s)
+#define test_long(d, s)	test_long_asm(&M.x86.R_EFLG, d, s)
+#define xor_byte(d, s)	xor_byte_asm(&M.x86.R_EFLG, d, s)
+#define xor_word(d, s)	xor_word_asm(&M.x86.R_EFLG, d, s)
+#define xor_long(d, s)	xor_long_asm(&M.x86.R_EFLG, d, s)
+#define imul_byte(s)	imul_byte_asm(&M.x86.R_EFLG, &M.x86.R_AX, M.x86.R_AL, s)
+#define imul_word(s)	imul_word_asm(&M.x86.R_EFLG, &M.x86.R_AX, &M.x86.R_DX, M.x86.R_AX, s)
+#define imul_long(s)	imul_long_asm(&M.x86.R_EFLG, &M.x86.R_EAX, &M.x86.R_EDX, M.x86.R_EAX, s)
+#define imul_long_direct(res_lo, res_hi, d, s)	imul_long_asm(&M.x86.R_EFLG, res_lo, res_hi, d, s)
+#define mul_byte(s)		mul_byte_asm(&M.x86.R_EFLG, &M.x86.R_AX, M.x86.R_AL, s)
+#define mul_word(s)		mul_word_asm(&M.x86.R_EFLG, &M.x86.R_AX, &M.x86.R_DX, M.x86.R_AX, s)
+#define mul_long(s)		mul_long_asm(&M.x86.R_EFLG, &M.x86.R_EAX, &M.x86.R_EDX, M.x86.R_EAX, s)
+#define idiv_byte(s)	idiv_byte_asm(&M.x86.R_EFLG, &M.x86.R_AL, &M.x86.R_AH, M.x86.R_AX, s)
+#define idiv_word(s)	idiv_word_asm(&M.x86.R_EFLG, &M.x86.R_AX, &M.x86.R_DX, M.x86.R_AX, M.x86.R_DX, s)
+#define idiv_long(s)	idiv_long_asm(&M.x86.R_EFLG, &M.x86.R_EAX, &M.x86.R_EDX, M.x86.R_EAX, M.x86.R_EDX, s)
+#define div_byte(s)		div_byte_asm(&M.x86.R_EFLG, &M.x86.R_AL, &M.x86.R_AH, M.x86.R_AX, s)
+#define div_word(s)		div_word_asm(&M.x86.R_EFLG, &M.x86.R_AX, &M.x86.R_DX, M.x86.R_AX, M.x86.R_DX, s)
+#define div_long(s)		div_long_asm(&M.x86.R_EFLG, &M.x86.R_EAX, &M.x86.R_EDX, M.x86.R_EAX, M.x86.R_EDX, s)
 
 #endif
 
-#ifdef  __cplusplus
-}                       			/* End of "C" linkage for C++   	*/
+#ifdef __cplusplus
+} /* End of "C" linkage for C++           */
 #endif
-
 #endif /* __X86EMU_PRIM_OPS_H */
diff --git a/src/device/oprom/x86emu/x86emui.h b/src/device/oprom/x86emu/x86emui.h
index 741153c..956fe75 100644
--- a/src/device/oprom/x86emu/x86emui.h
+++ b/src/device/oprom/x86emu/x86emui.h
@@ -1,10 +1,10 @@
 /****************************************************************************
 *
-*						Realmode X86 Emulator Library
+*			Realmode X86 Emulator Library
 *
-*            	Copyright (C) 1996-1999 SciTech Software, Inc.
-* 				     Copyright (C) David Mosberger-Tang
-* 					   Copyright (C) 1999 Egbert Eich
+*		Copyright (C) 1996-1999 SciTech Software, Inc.
+*		Copyright (C) David Mosberger-Tang
+*		Copyright (C) 1999 Egbert Eich
 *
 *  ========================================================================
 *
@@ -28,13 +28,13 @@
 *
 *  ========================================================================
 *
-* Language:		ANSI C
+* Language:	ANSI C
 * Environment:	Any
-* Developer:    Kendall Bennett
+* Developer:	Kendall Bennett
 *
-* Description:  Header file for system specific functions. These functions
-*				are always compiled and linked in the OS dependent libraries,
-*				and never in a binary portable driver.
+* Description:	Header file for system specific functions. These functions
+*		are always compiled and linked in the OS dependent libraries,
+*		and never in a binary portable driver.
 *
 ****************************************************************************/
 
@@ -57,7 +57,7 @@
 #ifdef __cplusplus
 #define	X86EMU_UNUSED(v)
 #else
-#define	X86EMU_UNUSED(v)	v __attribute__((unused))
+#define	X86EMU_UNUSED(v) v __attribute__((unused))
 #endif
 
 #include "x86emu/x86emu.h"
@@ -76,26 +76,25 @@
 #endif
 /*--------------------------- Inline Functions ----------------------------*/
 
-#ifdef  __cplusplus
-extern "C" {            			/* Use "C" linkage when in C++ mode */
+#ifdef __cplusplus
+extern "C" {		/* Use "C" linkage when in C++ mode */
 #endif
 
-extern u8  	(X86APIP sys_rdb)(u32 addr);
-extern u16 	(X86APIP sys_rdw)(u32 addr);
-extern u32 	(X86APIP sys_rdl)(u32 addr);
-extern void (X86APIP sys_wrb)(u32 addr,u8 val);
-extern void (X86APIP sys_wrw)(u32 addr,u16 val);
-extern void (X86APIP sys_wrl)(u32 addr,u32 val);
+	extern u8(X86APIP sys_rdb) (u32 addr);
+	extern u16(X86APIP sys_rdw) (u32 addr);
+	extern u32(X86APIP sys_rdl) (u32 addr);
+	extern void (X86APIP sys_wrb) (u32 addr, u8 val);
+	extern void (X86APIP sys_wrw) (u32 addr, u16 val);
+	extern void (X86APIP sys_wrl) (u32 addr, u32 val);
 
-extern u8  	(X86APIP sys_inb)(X86EMU_pioAddr addr);
-extern u16 	(X86APIP sys_inw)(X86EMU_pioAddr addr);
-extern u32 	(X86APIP sys_inl)(X86EMU_pioAddr addr);
-extern void (X86APIP sys_outb)(X86EMU_pioAddr addr,u8 val);
-extern void (X86APIP sys_outw)(X86EMU_pioAddr addr,u16 val);
-extern void	(X86APIP sys_outl)(X86EMU_pioAddr addr,u32 val);
+	extern u8(X86APIP sys_inb) (X86EMU_pioAddr addr);
+	extern u16(X86APIP sys_inw) (X86EMU_pioAddr addr);
+	extern u32(X86APIP sys_inl) (X86EMU_pioAddr addr);
+	extern void (X86APIP sys_outb) (X86EMU_pioAddr addr, u8 val);
+	extern void (X86APIP sys_outw) (X86EMU_pioAddr addr, u16 val);
+	extern void (X86APIP sys_outl) (X86EMU_pioAddr addr, u32 val);
 
-#ifdef  __cplusplus
-}                       			/* End of "C" linkage for C++   	*/
+#ifdef __cplusplus
+} /* End of "C" linkage for C++           */
 #endif
-
 #endif /* __X86EMU_X86EMUI_H */

-- 
To view, visit https://review.coreboot.org/26364
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ief5cc4178095bb617f770e6c078770a8f1af0133
Gerrit-Change-Number: 26364
Gerrit-PatchSet: 1
Gerrit-Owner: Elyes HAOUAS <ehaouas at noos.fr>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.coreboot.org/pipermail/coreboot-gerrit/attachments/20180518/00672139/attachment-0001.html>


More information about the coreboot-gerrit mailing list