summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/arm7/arm7.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/arm7/arm7.h')
-rw-r--r--src/emu/cpu/arm7/arm7.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/emu/cpu/arm7/arm7.h b/src/emu/cpu/arm7/arm7.h
new file mode 100644
index 00000000000..dc920146133
--- /dev/null
+++ b/src/emu/cpu/arm7/arm7.h
@@ -0,0 +1,41 @@
+/*****************************************************************************
+ *
+ * arm7.h
+ * Portable ARM7TDMI CPU Emulator
+ *
+ * Copyright (c) 2004 Steve Ellenoff, all rights reserved.
+ *
+ * - This source code is released as freeware for non-commercial purposes.
+ * - You are free to use and redistribute this code in modified or
+ * unmodified form, provided you list me in the credits.
+ * - If you modify this source code, you must add a notice to each modified
+ * source file that it has been changed. If you're a nice person, you
+ * will clearly mark each change too. :)
+ * - If you wish to use this for commercial purposes, please contact me at
+ * sellenoff@hotmail.com
+ * - The author of this copywritten work reserves the right to change the
+ * terms of its usage and license at any time, including retroactively
+ * - This entire notice must remain in the source code.
+ *
+ * This work is based on:
+ * #1) 'Atmel Corporation ARM7TDMI (Thumb) Datasheet - January 1999'
+ * #2) Arm 2/3/6 emulator By Bryan McPhail (bmcphail@tendril.co.uk) and Phil Stroffolino (MAME CORE 0.76)
+ *
+ *****************************************************************************
+
+ This file contains everything related to the arm7 cpu specific implementation.
+ Anything related to the arm7 core itself is defined in arm7core.h instead.
+
+ ******************************************************************************/
+
+#ifndef ARM7_H
+#define ARM7_H
+
+#include "cpuintrf.h"
+
+/****************************************************************************************************
+ * PUBLIC FUNCTIONS
+ ***************************************************************************************************/
+extern void arm7_get_info(UINT32 state, cpuinfo *info);
+
+#endif /* ARM7_H */