summaryrefslogtreecommitdiffstatshomepage
path: root/src/ume
diff options
context:
space:
mode:
Diffstat (limited to 'src/ume')
-rw-r--r--src/ume/dummy.lst12
-rw-r--r--src/ume/osd/windows/ume.icobin353118 -> 0 bytes
-rw-r--r--src/ume/osd/windows/ume.man10
-rw-r--r--src/ume/osd/windows/ume.rc14
-rw-r--r--src/ume/tiny.lst13
-rw-r--r--src/ume/ume.c48
-rw-r--r--src/ume/ume.lst13
-rw-r--r--src/ume/ume.mak10
8 files changed, 0 insertions, 120 deletions
diff --git a/src/ume/dummy.lst b/src/ume/dummy.lst
deleted file mode 100644
index 2a366c9b4cd..00000000000
--- a/src/ume/dummy.lst
+++ /dev/null
@@ -1,12 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Aaron Giles
-/******************************************************************************
-
- dummy.lst
-
- List of all enabled drivers in the system. This file is parsed by
- makelist.exe, sorted, and output as C code describing the drivers.
-
-******************************************************************************/
-
-coleco
diff --git a/src/ume/osd/windows/ume.ico b/src/ume/osd/windows/ume.ico
deleted file mode 100644
index d6062cffdf6..00000000000
--- a/src/ume/osd/windows/ume.ico
+++ /dev/null
Binary files differ
diff --git a/src/ume/osd/windows/ume.man b/src/ume/osd/windows/ume.man
deleted file mode 100644
index 3282441823b..00000000000
--- a/src/ume/osd/windows/ume.man
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
- <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
- <assemblyIdentity version="1.0.0.0" processorArchitecture="*" name="UME" type="win32" />
- <description>Universal Machine Emulator</description>
- <dependency>
- <dependentAssembly>
- <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" publicKeyToken="6595b64144ccf1df" language="*" processorArchitecture="*"/>
- </dependentAssembly>
- </dependency>
-</assembly>
diff --git a/src/ume/osd/windows/ume.rc b/src/ume/osd/windows/ume.rc
deleted file mode 100644
index ddd2d88824d..00000000000
--- a/src/ume/osd/windows/ume.rc
+++ /dev/null
@@ -1,14 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Aaron Giles
-//============================================================
-//
-// ume.rc - Minimal resource file for Win32 MAME
-//
-//============================================================
-
-#include <windows.h>
-#include "umevers.rc"
-
-1 24 MOVEABLE PURE "ume.man"
-
-2 ICON DISCARDABLE "ume.ico"
diff --git a/src/ume/tiny.lst b/src/ume/tiny.lst
deleted file mode 100644
index 7c4857d9cfd..00000000000
--- a/src/ume/tiny.lst
+++ /dev/null
@@ -1,13 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Aaron Giles
-/******************************************************************************
-
- ume.lst
-
- List of all enabled drivers in the system. This file is parsed by
- makelist.exe, sorted, and output as C code describing the drivers.
-
-******************************************************************************/
-
-#../../../../../src/mame/tiny.lst
-#../../../../../src/mess/tiny.lst
diff --git a/src/ume/ume.c b/src/ume/ume.c
deleted file mode 100644
index 0f79ebb39ab..00000000000
--- a/src/ume/ume.c
+++ /dev/null
@@ -1,48 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Aaron Giles
-/***************************************************************************
-
- ume.c
-
- Specific (per target) constants
-
-****************************************************************************/
-#include "emu.h"
-
-#define APPNAME "UME"
-#define APPNAME_LOWER "ume"
-#define CONFIGNAME "ume"
-#define APPLONGNAME "U.M.E."
-#define FULLLONGNAME "Universal Machine Emulator"
-#define CAPGAMENOUN "GAME"
-#define CAPSTARTGAMENOUN "Game"
-#define GAMENOUN "game"
-#define GAMESNOUN "games"
-#define COPYRIGHT "Copyright Nicola Salmoria\nand the MAME and MESS teams"
-#define COPYRIGHT_INFO "Copyright Nicola Salmoria and the MAME and MESS teams"
-#define DISCLAIMER "This is promo build of combined MAME and MESS emulators made in order to\n" \
- "promote both projects and show possibilities to new potential users.\n\n" \
- "Note that bugs noticed in this build should not be forwarded to development\n"\
- "teams unless those are confirmed in original builds as well.\n"
-#define USAGE "Usage: %s [%s] [media] [software] [options]"
-#define XML_ROOT "mame"
-#define XML_TOP "game"
-#define STATE_MAGIC_NUM "MAMESAVE"
-
-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_applongname() { return APPLONGNAME;}
-const char * emulator_info::get_fulllongname() { return FULLLONGNAME;}
-const char * emulator_info::get_capgamenoun() { return CAPGAMENOUN;}
-const char * emulator_info::get_capstartgamenoun() { return CAPSTARTGAMENOUN;}
-const char * emulator_info::get_gamenoun() { return GAMENOUN;}
-const char * emulator_info::get_gamesnoun() { return GAMESNOUN;}
-const char * emulator_info::get_copyright() { return COPYRIGHT;}
-const char * emulator_info::get_copyright_info() { return COPYRIGHT_INFO;}
-const char * emulator_info::get_disclaimer() { return DISCLAIMER;}
-const char * emulator_info::get_usage() { return USAGE;}
-const char * emulator_info::get_xml_root() { return XML_ROOT;}
-const char * emulator_info::get_xml_top() { return XML_TOP;}
-const char * emulator_info::get_state_magic_num() { return STATE_MAGIC_NUM;}
-void emulator_info::printf_usage(const char *par1, const char *par2) { osd_printf_info(USAGE, par1, par2); }
diff --git a/src/ume/ume.lst b/src/ume/ume.lst
deleted file mode 100644
index 5ab9d1bcab0..00000000000
--- a/src/ume/ume.lst
+++ /dev/null
@@ -1,13 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Aaron Giles
-/******************************************************************************
-
- ume.lst
-
- List of all enabled drivers in the system. This file is parsed by
- makelist.exe, sorted, and output as C code describing the drivers.
-
-******************************************************************************/
-
-#../../../../../src/mame/mame.lst
-#../../../../../src/mess/mess.lst
diff --git a/src/ume/ume.mak b/src/ume/ume.mak
deleted file mode 100644
index 9a2cd01c0bd..00000000000
--- a/src/ume/ume.mak
+++ /dev/null
@@ -1,10 +0,0 @@
-###########################################################################
-#
-# makefile
-#
-# Additional makefile for building UME
-#
-###########################################################################
-
-GEN_FOLDERS += $(GENDIR)/mame/layout/ $(GENDIR)/mess/layout/
-LAYOUTS += $(wildcard $(SRC)/mame/layout/*.lay) $(wildcard $(SRC)/mess/layout/*.lay)