diff options
author | 2016-08-06 08:54:37 -0400 | |
---|---|---|
committer | 2016-08-06 08:54:37 -0400 | |
commit | 7f5e233933332226222e2510511cdc7c8ff8fbc2 (patch) | |
tree | 67a1cce178de5c6903f28a419ebe69867118ff10 /src/devices/video/sed1200.cpp | |
parent | 057474989c1a92e9e935dbc8cb9d233ba3a4ea3a (diff) |
Created a tiny_rom_entry structure for the purposes of rom_entry declarations in code, and a first pass at the required core changes
to unpack tiny_rom_entry structures at runtime.
WARNING - I've done preliminary testing on a tiny build (pacman works), but nothing more. I know for a fact that a full compile fails
Diffstat (limited to 'src/devices/video/sed1200.cpp')
-rw-r--r-- | src/devices/video/sed1200.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/video/sed1200.cpp b/src/devices/video/sed1200.cpp index 06cd7ba7e83..6d88b288714 100644 --- a/src/devices/video/sed1200.cpp +++ b/src/devices/video/sed1200.cpp @@ -56,22 +56,22 @@ sed1200f0b_device::sed1200f0b_device(const machine_config &mconfig, const char * { } -const rom_entry *sed1200d0a_device::device_rom_region() const +const tiny_rom_entry *sed1200d0a_device::device_rom_region() const { return ROM_NAME(sed1200x0a); } -const rom_entry *sed1200f0a_device::device_rom_region() const +const tiny_rom_entry *sed1200f0a_device::device_rom_region() const { return ROM_NAME(sed1200x0a); } -const rom_entry *sed1200d0b_device::device_rom_region() const +const tiny_rom_entry *sed1200d0b_device::device_rom_region() const { return ROM_NAME(sed1200x0b); } -const rom_entry *sed1200f0b_device::device_rom_region() const +const tiny_rom_entry *sed1200f0b_device::device_rom_region() const { return ROM_NAME(sed1200x0b); } |