diff options
| author | 2018-10-12 16:45:25 +0700 | |
|---|---|---|
| committer | 2018-10-12 16:45:25 +0700 | |
| commit | fc86a4ab09693801aaebea02cf4cfa36ad5fb66c (patch) | |
| tree | a510afb17db54c311e56f9ccf754f182d2176cac /scripts | |
| parent | 677ba1d50f46e3cb2dc16cc4abe7f56079441ca8 (diff) | |
mips: new skeleton driver
A driver for machines made by MIPS Computer Systems, which used MIPS R2000, R3000 and R6000 CPUs and ran RISC/os (a port of UNIX System V Release 3). Initial focus is the RC2030 headless workstation. As of this commit, it gets part-way through its I/O processor diagnostics with output to a serial terminal.
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/target/mame/mess.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 090fc2cadcc..b7199ceb480 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -1088,6 +1088,7 @@ function linkProjects_mame_mess(_target, _subtarget) "mgu", "microkey", "microsoft", + "mips" "mit", "mits", "mitsubishi", @@ -2486,6 +2487,12 @@ files { MAME_DIR .. "src/mame/includes/xbox_pci.h", } +createMESSProjects(_target, _subtarget, "mips") +files { + MAME_DIR .. "src/mame/drivers/mips.cpp", + MAME_DIR .. "src/mame/includes/mips.h", +} + createMESSProjects(_target, _subtarget, "mit") files { MAME_DIR .. "src/mame/drivers/tx0.cpp", |
