summaryrefslogtreecommitdiffstats
path: root/src/hbmame/hbmame.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/hbmame/hbmame.cpp')
-rw-r--r--src/hbmame/hbmame.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/hbmame/hbmame.cpp b/src/hbmame/hbmame.cpp
new file mode 100644
index 00000000000..576a487f8ec
--- /dev/null
+++ b/src/hbmame/hbmame.cpp
@@ -0,0 +1,24 @@
+// license:BSD-3-Clause
+// copyright-holders:Robbbert
+/***************************************************************************
+
+ hbmame.c
+
+ Specific (per target) constants
+
+****************************************************************************/
+
+#include "emu.h"
+
+#define APPNAME "HBMAME"
+#define APPNAME_LOWER "hbmame"
+#define CONFIGNAME "hbmame"
+#define COPYRIGHT "Copyright Robbbert\nand the MAME team\nhttp://mamedev.org"
+#define COPYRIGHT_INFO "\nMAME portions are copyright the MAME team.\n" \
+ "HBMAME portions are copyright Robbbert."
+
+const char * emulator_info::get_appname() { return APPNAME;}
+const char * emulator_info::get_appname_lower() { return APPNAME_LOWER;}
+const char * emulator_info::get_configname() { return CONFIGNAME;}
+const char * emulator_info::get_copyright() { return COPYRIGHT;}
+const char * emulator_info::get_copyright_info() { return COPYRIGHT_INFO;}