summaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2025-12-04 04:12:48 +1100
committer Vas Crabb <vas@vastheman.com>2025-12-04 04:12:48 +1100
commit4ccbb3a93eae337eb9533fbe8d2af0f4809f5c5a (patch)
tree2f6fe2ceb4be058a3523f46acc615f79793f378a /scripts
parent7e1b916a0aa2bb2d5e9a9937fa8fd5ada8a7fd06 (diff)
tvgames: Get rid of "full memory" device.
You can add address spaces to anything. And if you don't want to do that, you can just use an address_map_bank_device as a convenient device_memory_interface.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build/complay.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/complay.py b/scripts/build/complay.py
index 9fab1912428..0f41940dab1 100755
--- a/scripts/build/complay.py
+++ b/scripts/build/complay.py
@@ -453,7 +453,7 @@ class LayoutChecker(Minifyer):
self.handle_error('Element text missing attribute string')
align = self.check_int_attribute(name, attrs, 'align', None)
if (align is not None) and ((0 > align) or (3 < align)):
- self.handle_error('Element text attribute align "%s" not in valid range 0-2' % (attrs['align'], ))
+ self.handle_error('Element text attribute align "%s" not in valid range 0-3' % (attrs['align'], ))
self.check_component(name, attrs)
elif 'simplecounter' == name:
maxstate = self.check_int_attribute(name, attrs, 'maxstate', None)