diff options
author | 2008-08-12 03:40:09 +0000 | |
---|---|---|
committer | 2008-08-12 03:40:09 +0000 | |
commit | d5d5d9449bf6bed24f4bd6df287029f2aaf89342 (patch) | |
tree | b6e157719686e44d66162165e5e60c45c99d0732 /src/emu/cpu/minx/minxfunc.h | |
parent | 7e7e4ef30f78cdc4afb5494a38fac60f7bf59f56 (diff) |
structure, lower-casing functions and re-inclusion updates of the src\emu\cpu headers J - M.
Diffstat (limited to 'src/emu/cpu/minx/minxfunc.h')
-rw-r--r-- | src/emu/cpu/minx/minxfunc.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/emu/cpu/minx/minxfunc.h b/src/emu/cpu/minx/minxfunc.h index ca97450078d..a4d7d249874 100644 --- a/src/emu/cpu/minx/minxfunc.h +++ b/src/emu/cpu/minx/minxfunc.h @@ -1,3 +1,8 @@ +#pragma once + +#ifndef __MINXFUNC_H__ +#define __MINXFUNC_H__ + INLINE UINT8 ADD8( UINT8 arg1, UINT8 arg2 ) { @@ -363,3 +368,4 @@ INLINE void CALL( UINT16 arg ) #define AD2_XL UINT32 addr2 = ( regs.XI << 16 ) | ( regs.X + ( regs.HL & 0x00FF ) ) #define AD2_YL UINT32 addr2 = ( regs.YI << 16 ) | ( regs.Y + ( regs.HL & 0x00FF ) ) +#endif /* __MINXFUNC_H__ */ |