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/bus/isa/mufdc.h | |
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/bus/isa/mufdc.h')
-rw-r--r-- | src/devices/bus/isa/mufdc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/isa/mufdc.h b/src/devices/bus/isa/mufdc.h index 976558e90cd..abfd8965c94 100644 --- a/src/devices/bus/isa/mufdc.h +++ b/src/devices/bus/isa/mufdc.h @@ -69,7 +69,7 @@ public: // construction/destruction fdc344_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); - virtual const rom_entry *device_rom_region() const override; + virtual const tiny_rom_entry *device_rom_region() const override; protected: virtual void device_config_complete() override { m_shortname = "fdc344"; } @@ -81,7 +81,7 @@ public: // construction/destruction fdcmag_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); - virtual const rom_entry *device_rom_region() const override; + virtual const tiny_rom_entry *device_rom_region() const override; protected: virtual void device_config_complete() override { m_shortname = "fdcmag"; } |