diff options
author | 2022-08-21 00:33:41 +0100 | |
---|---|---|
committer | 2022-08-21 01:33:41 +0200 | |
commit | 7d346689de53e02bfc8500025dcbb46e649cc948 (patch) | |
tree | 9f63cbc1b1bf10a45508834a769bc4f5fefe1be1 /scripts/src/machine.lua | |
parent | e2bbb81f0a22a55a8b9d82db4127874de9ee636d (diff) |
Greatly improve Monon Color emulation (#10158)
* added emulation of required/used AXC51 / AX208 extended operations
* added preliminary emulation of required/used AXC51 / AX208 features
* added support for many Monon specific features, such as the video controller
* most games are playable, those not requiring a card/badge scanner to function at all are promoted
* no music, as it's contained in a game specific MCU under a glob on each cart
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 0fb0e109de5..fb211d9c6b0 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1475,6 +1475,18 @@ if (MACHINES["GT913"]~=null) then } end +-------------------------------------------------- +-- +--@src/devices/machine/acorn_ioc.h,MACHINES["GENERIC_SPI_FLASH"] = true +-------------------------------------------------- + +if (MACHINES["GENERIC_SPI_FLASH"]~=null) then + files { + MAME_DIR .. "src/devices/machine/generic_spi_flash.cpp", + MAME_DIR .. "src/devices/machine/generic_spi_flash.h", + } +end + --------------------------------------------------- -- --@src/devices/machine/hd63450.h,MACHINES["HD63450"] = true |