diff options
| author | 2024-11-25 23:42:46 +0000 | |
|---|---|---|
| committer | 2024-11-26 00:42:46 +0100 | |
| commit | 521af022e3fbecbc049625e3ec25a5ec1ba80869 (patch) | |
| tree | 17409991ffaaea1905167a1ca9034d82fa004650 /scripts/src | |
| parent | f35289badb4928b4286e7a42334603d58ee9596d (diff) | |
new machines marked as NOT WORKING - Cassette Vision (#11927)
* abandoned cassette vison work
* remove comment now that the useful table is gone
* force github to rebuild because github is being github
* add a note based on earlier research
* bring this part over from the previous tree too, it seems worth having still
* actually use this version instead, I thought it was broken, but it actually has advantages
* I've been informed this will be merged if I assign a copyright holder, so as I don't really recognize it as my own design anymore, I'm assigning Vas.
* Update cpu.lua
* Start cleaning up:
* cassvisn_cart.xml: Fixed program region width.
* cassvisn_cart.xml: Added Japanese titles and proper markup for release
dates.
* epoch/cassvisn.cpp: Removed unnecessary byte swapping when loading
software list items.
* cpu/upd777.cpp: Made order of declarations and definitions more
consistent with each other, added more inline and const hints.
* tools/unidasm.cpp: Make data source big Endian to match CPU core.
* epoch/cassvisn.cpp: Digit grouping for big numbers, better error messages.
---------
Co-authored-by: David Haywood <hazemamewip@hotmail.com>
Co-authored-by: Vas Crabb <vas@vastheman.com>
Diffstat (limited to 'scripts/src')
| -rw-r--r-- | scripts/src/cpu.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index 96a274222e1..302d4ff83f5 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -4136,6 +4136,23 @@ if opt_tool(CPUS, "HT1130") then end -------------------------------------------------- +-- UPD777 +--@src/devices/cpu/upd777/upd777.h,CPUS["UPD777"] = true +-------------------------------------------------- + +if CPUS["UPD777"] then + files { + MAME_DIR .. "src/devices/cpu/upd777/upd777.cpp", + MAME_DIR .. "src/devices/cpu/upd777/upd777.h", + } +end + +if opt_tool(CPUS, "UPD777") then + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/upd777/upd777dasm.cpp") + table.insert(disasm_files , MAME_DIR .. "src/devices/cpu/upd777/upd777dasm.h") +end + +-------------------------------------------------- -- Epson C33 STD, C33 ADV, etc. --@src/devices/cpu/c33/c33common.h,CPUS["C33"] = true -------------------------------------------------- |
