diff options
| author | 2018-04-16 15:00:04 +0200 | |
|---|---|---|
| committer | 2018-04-16 15:11:26 +0200 | |
| commit | 5832c7c2de9ce0ca1baa840050d689bf2b79a96b (patch) | |
| tree | d0bbb571169c459aed4b573b53b7bef91c40a60f /scripts/src | |
| parent | ed3345e84f024fdfe4e52a9a13469f8747fa45ce (diff) | |
split up hp98603 basic rom card
The 98603A and 98603B cards have different base addresses and sizes
for the rom region. Split up the cards so that we can boot HP BASIC 4
and HP BASIC 5.1.
Signed-off-by: Sven Schnelle <svens@stackframe.org>
Diffstat (limited to 'scripts/src')
| -rw-r--r-- | scripts/src/bus.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index d57cd09c690..b2e0b5abe27 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -836,8 +836,10 @@ if (BUSES["HPDIO"]~=null) then MAME_DIR .. "src/devices/bus/hp_dio/hp_dio.h", MAME_DIR .. "src/devices/bus/hp_dio/hp98544.cpp", MAME_DIR .. "src/devices/bus/hp_dio/hp98544.h", - MAME_DIR .. "src/devices/bus/hp_dio/hp98603.cpp", - MAME_DIR .. "src/devices/bus/hp_dio/hp98603.h", + MAME_DIR .. "src/devices/bus/hp_dio/hp98603a.cpp", + MAME_DIR .. "src/devices/bus/hp_dio/hp98603a.h", + MAME_DIR .. "src/devices/bus/hp_dio/hp98603b.cpp", + MAME_DIR .. "src/devices/bus/hp_dio/hp98603b.h", MAME_DIR .. "src/devices/bus/hp_dio/hp98644.cpp", MAME_DIR .. "src/devices/bus/hp_dio/hp98644.h", } |
