summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/i86/ea.h
diff options
context:
space:
mode:
author Derrick Renaud <derrickr@mamedev.org>2008-08-11 03:06:59 +0000
committer Derrick Renaud <derrickr@mamedev.org>2008-08-11 03:06:59 +0000
commit3c2b00d332842db1d1d69311958597f78bd5f534 (patch)
tree8d06d079157b93b27cdec7d01f614bdb2870ee0e /src/emu/cpu/i86/ea.h
parent9ab4f76a04c642851b97b88571533371a13f1c31 (diff)
structure, lower-casing functions and re-inclusion updates of the src\emu\cpu headers up to I.
It's mostly just re-inclusion renaming, but there are few other re-nameings.
Diffstat (limited to 'src/emu/cpu/i86/ea.h')
-rw-r--r--src/emu/cpu/i86/ea.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/emu/cpu/i86/ea.h b/src/emu/cpu/i86/ea.h
index dca12337a5b..04c20ea5a84 100644
--- a/src/emu/cpu/i86/ea.h
+++ b/src/emu/cpu/i86/ea.h
@@ -1,3 +1,9 @@
+#pragma once
+
+#ifndef __EA_H__
+#define __EA_H__
+
+
static unsigned EA;
static UINT16 EO; /* HJB 12/13/98 effective offset of the address (before segment is added) */
@@ -56,3 +62,5 @@ static unsigned (*const GetEA[192])(void)={
EA_200, EA_201, EA_202, EA_203, EA_204, EA_205, EA_206, EA_207,
EA_200, EA_201, EA_202, EA_203, EA_204, EA_205, EA_206, EA_207
};
+
+#endif /* __EA_H__ */