diff options
| author | 2025-12-04 04:12:48 +1100 | |
|---|---|---|
| committer | 2025-12-04 04:12:48 +1100 | |
| commit | 4ccbb3a93eae337eb9533fbe8d2af0f4809f5c5a (patch) | |
| tree | 2f6fe2ceb4be058a3523f46acc615f79793f378a /scripts | |
| parent | 7e1b916a0aa2bb2d5e9a9937fa8fd5ada8a7fd06 (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-x | scripts/build/complay.py | 2 |
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) |
