diff options
author | 2023-01-10 18:20:00 +0100 | |
---|---|---|
committer | 2023-01-11 04:20:00 +1100 | |
commit | 88ea41b8879959f52a517b5b8ef136f50945f32f (patch) | |
tree | d75fa3929cd919dc14183744e1983efa4ee82190 /scripts/src/machine.lua | |
parent | f700b584dc41721b98ae7c86125f7ecf292c8e79 (diff) |
sun4c, SPARC, and NCR53C90 bug fixes: (#10821) [Ryan Holtz]
* machine/ncr53c90.cpp: Renamed to ncr53c90 to avoid confusion about the actual NCR part name.
* machine/ncr53c90.cpp: Fixed 'Select w/ ATN and Stop' command in DMA mode.
* cpu/sparc: Avoid using temporary C-strings as address space names.
* machine/sun4c_mmu.cpp: Fixed l2p debugger command by removing inadvertent narrowing conversion.
* sun/sun4.cpp: Switched to NCR 53C90 from 53C90A, and fixed DMA byte-address masking - fixes Solaris 2.4 booting.
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 4439cfd339f..9a7ebb78b69 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -4034,13 +4034,13 @@ end --------------------------------------------------- -- ---@src/devices/machine/ncr5390.h,MACHINES["NCR5390"] = true +--@src/devices/machine/ncr53c90.h,MACHINES["NCR53C90"] = true --------------------------------------------------- -if (MACHINES["NCR5390"]~=null) then +if (MACHINES["NCR53C90"]~=null) then files { - MAME_DIR .. "src/devices/machine/ncr5390.cpp", - MAME_DIR .. "src/devices/machine/ncr5390.h", + MAME_DIR .. "src/devices/machine/ncr53c90.cpp", + MAME_DIR .. "src/devices/machine/ncr53c90.h", } end |