summaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2022-07-01 23:12:11 -0400
committer AJR <ajrhacker@users.noreply.github.com>2022-07-01 23:14:45 -0400
commit21c3c105645be9e523a57c617586dcf9cbe465c3 (patch)
treec320754da48ac86583881f717954d267b2d29899 /scripts
parent388d6c34b2d30fff2924e94035077ab0d184841f (diff)
Seta X1-001 sprite device cleanup
- Use 16-bit pointer for sprite RAM storage (despite some systems only having 8-bit CPUs) - Rename device and move to src/devices - Clean up variable naming in associated drivers - neobattl: Add DIP switch locations - krzybowl: Reduce clocks to match known XTAL value
Diffstat (limited to 'scripts')
-rw-r--r--scripts/src/video.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/video.lua b/scripts/src/video.lua
index 34184fbe2ef..538cf859a32 100644
--- a/scripts/src/video.lua
+++ b/scripts/src/video.lua
@@ -1421,3 +1421,15 @@ if (VIDEOS["AVGDVG"]~=null) then
MAME_DIR .. "src/devices/video/avgdvg.h",
}
end
+
+--------------------------------------------------
+--
+--@src/devices/video/x1_001.h,VIDEOS["X1_001"] = true
+--------------------------------------------------
+
+if (VIDEOS["X1_001"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/video/x1_001.cpp",
+ MAME_DIR .. "src/devices/video/x1_001.h",
+ }
+end