summaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2023-06-08 20:37:09 -0400
committer arbee <rb6502@users.noreply.github.com>2023-06-08 20:37:09 -0400
commit958e912777148c72fab7cd84e3e8db7354cbd072 (patch)
tree41641b7e8784cd4e38a050fb958ac9fdf13609eb /scripts
parent7be636982db167fc3af44efb2821623122d362af (diff)
apple/apple2.cpp: added Apple ROM/Firmware card with 3 options: Applesoft, Integer, and User-Defined. [R. Belmont]
* Use "-rom file.bin" with the user-defined ROM card to make your own custom Apple. File must be 12KiB and goes in D0/D8/E0/E8/F0/F8 order. a2bus: wire up a method to assert the reset line on the slots. This is important for the ROM card. [R. Belmont] apple/apple2.cpp,apple2e.cpp,apple2gs.cpp,apple3.cpp: Reset the a2bus when the 6502/65816 is reset. [R. Belmont] apple/apple2gs.cpp: Reset the softswitches like a IIe on Control-Reset. [R. Belmont] apple/apple3.cpp: Now has the same Control-Reset behavior improvements as the Apple IIs. [R. Belmont]
Diffstat (limited to 'scripts')
-rw-r--r--scripts/src/bus.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua
index 0f8ada2b828..59d5daa9e5d 100644
--- a/scripts/src/bus.lua
+++ b/scripts/src/bus.lua
@@ -2856,6 +2856,8 @@ if (BUSES["A2BUS"]~=null) then
MAME_DIR .. "src/devices/bus/a2bus/ramcard128k.h",
MAME_DIR .. "src/devices/bus/a2bus/ramcard16k.cpp",
MAME_DIR .. "src/devices/bus/a2bus/ramcard16k.h",
+ MAME_DIR .. "src/devices/bus/a2bus/romcard.cpp",
+ MAME_DIR .. "src/devices/bus/a2bus/romcard.h",
MAME_DIR .. "src/devices/bus/a2bus/sider.cpp",
MAME_DIR .. "src/devices/bus/a2bus/sider.h",
MAME_DIR .. "src/devices/bus/a2bus/softcard3.cpp",