diff options
author | 2017-11-06 20:45:24 +0100 | |
---|---|---|
committer | 2017-11-06 20:47:38 +0100 | |
commit | faeedc757c8e53affa4d94f471e5f75be2bc0f3b (patch) | |
tree | 2622b16bedd97b3bc7714d123f365f98e1cb7a32 /scripts/src/machine.lua | |
parent | 9b446161b892aac103ee9666c00bcb7a26887b8d (diff) |
einstein: Major cleanup, add a ADC0844 device
The analogue joystick is now emulated. Also fixed a few minor issues
with the memory map.
This also adds a generic Z80 dasisy chain device, for use in drivers
with non-Z80 peripherals.
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 d5a30d27756..d6f08b7c8ce 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -3287,3 +3287,15 @@ if (MACHINES["I82586"]~=null) then MAME_DIR .. "src/devices/machine/i82586.h", } end + +--------------------------------------------------- +-- +--@src/devices/machine/adc0844.h,MACHINES["ADC0844"] = true +--------------------------------------------------- + +if (MACHINES["ADC0844"]~=null) then + files { + MAME_DIR .. "src/devices/machine/adc0844.cpp", + MAME_DIR .. "src/devices/machine/adc0844.h", + } +end |