mirror of
https://github.com/holub/mame
synced 2025-10-04 08:28:39 +03:00
ticalc1x: move to hh_tms1k (nw)
This commit is contained in:
parent
ff0ad51b55
commit
55e52efcd1
@ -3453,8 +3453,7 @@ files {
|
||||
MAME_DIR .. "src/mame/includes/screenless.h", -- delete soon
|
||||
MAME_DIR .. "src/mame/drivers/hh_tms1k.cpp",
|
||||
MAME_DIR .. "src/mame/includes/hh_tms1k.h",
|
||||
MAME_DIR .. "src/mame/drivers/ticalc1x.cpp", -- subdriver of hh_tms1k
|
||||
MAME_DIR .. "src/mame/drivers/tispeak.cpp", -- "
|
||||
MAME_DIR .. "src/mame/drivers/tispeak.cpp", -- subdriver of hh_tms1k
|
||||
MAME_DIR .. "src/mame/drivers/tispellb.cpp", -- "
|
||||
MAME_DIR .. "src/mame/drivers/ti74.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/ti85.cpp",
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -21,7 +21,7 @@
|
||||
#include "cpu/tms1000/tms0980.h"
|
||||
#include "cpu/tms1000/tms0270.h"
|
||||
#include "cpu/tms1000/tp0320.h"
|
||||
|
||||
#include "video/pwm.h"
|
||||
#include "sound/spkrdev.h"
|
||||
|
||||
|
||||
@ -31,6 +31,7 @@ public:
|
||||
hh_tms1k_state(const machine_config &mconfig, device_type type, const char *tag) :
|
||||
screenless_state(mconfig, type, tag),
|
||||
m_maincpu(*this, "maincpu"),
|
||||
m_display(*this, "display"),
|
||||
m_speaker(*this, "speaker"),
|
||||
m_inputs(*this, "IN.%u", 0),
|
||||
m_out_power(*this, "power")
|
||||
@ -38,6 +39,7 @@ public:
|
||||
|
||||
// devices
|
||||
required_device<tms1k_base_device> m_maincpu;
|
||||
optional_device<pwm_display_device> m_display;
|
||||
optional_device<speaker_sound_device> m_speaker;
|
||||
optional_ioport_array<18> m_inputs; // max 18
|
||||
output_finder<> m_out_power; // power state, eg. led
|
||||
|
@ -15325,6 +15325,7 @@ bigtrak // Milton Bradley
|
||||
bship // Milton Bradley
|
||||
bshipb // Milton Bradley
|
||||
cmsport // Conic
|
||||
cmulti8 // Canon
|
||||
cnbaskb // Conic
|
||||
cnfball // Conic
|
||||
cnfball2 // Conic
|
||||
@ -15333,6 +15334,7 @@ comp4 // Milton Bradley
|
||||
copycat // Tiger Electronics
|
||||
copycatm2 // Tiger Electronics
|
||||
cqback // Coleco
|
||||
dataman // Texas Instruments
|
||||
ditto // Tiger Electronics
|
||||
ebaskb2 // Entex
|
||||
ebball // Entex
|
||||
@ -15359,9 +15361,12 @@ h2hboxing // Coleco
|
||||
h2hfootb // Coleco
|
||||
h2hhockey // Coleco
|
||||
horseran // Mattel
|
||||
lilprof // Texas Instruments
|
||||
lilprof78 // Texas Instruments
|
||||
lostreas // Parker Bros
|
||||
matchnum // A-One LSI
|
||||
mathmagi // APF
|
||||
mathmarv // Texas Instruments
|
||||
mbdtower // Milton Bradley
|
||||
mdndclab // Mattel
|
||||
merlin // Parker Bros
|
||||
@ -15385,8 +15390,19 @@ tbreakup // Tomy
|
||||
tc4 // Coleco
|
||||
tcfball // Tandy Radio Shack
|
||||
tcfballa // Tandy Radio Shack
|
||||
ti1000 // Texas Instruments
|
||||
ti1250 // Texas Instruments
|
||||
ti125076 // Texas Instruments
|
||||
ti1270 // Texas Instruments
|
||||
ti25503 // Texas Instruments
|
||||
ti30 // Texas Instruments
|
||||
tibusan // Texas Instruments
|
||||
timaze // Texas Instruments
|
||||
tiprog // Texas Instruments
|
||||
tisr16 // Texas Instruments
|
||||
tisr16ii // Texas Instruments
|
||||
tithermos // Texas Instruments
|
||||
wizatron // Texas Instruments
|
||||
xl25 // Vulcan
|
||||
zodiac // Coleco
|
||||
|
||||
@ -37863,24 +37879,6 @@ sosterm // (c) 1988 Terminal
|
||||
gorodki // (c) 1988 Terminal
|
||||
kot // (c) 1988 Terminal
|
||||
|
||||
@source:ticalc1x.cpp
|
||||
cmulti8 // Canon
|
||||
dataman //
|
||||
lilprof //
|
||||
lilprof78 //
|
||||
mathmarv //
|
||||
ti1000 //
|
||||
ti1250 //
|
||||
ti125076 //
|
||||
ti1270 //
|
||||
ti25503 //
|
||||
ti30 //
|
||||
tibusan //
|
||||
tiprog //
|
||||
tisr16 //
|
||||
tisr16ii //
|
||||
wizatron //
|
||||
|
||||
@source:tickee.cpp
|
||||
ghoshunt // (c) 1995? Hanaho Games
|
||||
maletmad // (c) 1999 Hanaho Games, licensed to Capcom
|
||||
|
@ -806,7 +806,6 @@ ti99_4x.cpp
|
||||
ti99_8.cpp
|
||||
ti990_10.cpp
|
||||
ti990_4.cpp
|
||||
ticalc1x.cpp
|
||||
tiki100.cpp
|
||||
titan_soc.cpp
|
||||
tim011.cpp
|
||||
|
Loading…
Reference in New Issue
Block a user