summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ieee488/c8050.cpp
diff options
context:
space:
mode:
author Nathan Woods <npwoods@mess.org>2016-08-06 08:54:37 -0400
committer Nathan Woods <npwoods@mess.org>2016-08-06 08:54:37 -0400
commit7f5e233933332226222e2510511cdc7c8ff8fbc2 (patch)
tree67a1cce178de5c6903f28a419ebe69867118ff10 /src/devices/bus/ieee488/c8050.cpp
parent057474989c1a92e9e935dbc8cb9d233ba3a4ea3a (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/ieee488/c8050.cpp')
-rw-r--r--src/devices/bus/ieee488/c8050.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/ieee488/c8050.cpp b/src/devices/bus/ieee488/c8050.cpp
index ead9fad37a5..bdc1b848e3f 100644
--- a/src/devices/bus/ieee488/c8050.cpp
+++ b/src/devices/bus/ieee488/c8050.cpp
@@ -109,7 +109,7 @@ ROM_END
// rom_region - device-specific ROM region
//-------------------------------------------------
-const rom_entry *c8050_t::device_rom_region() const
+const tiny_rom_entry *c8050_t::device_rom_region() const
{
return ROM_NAME( c8050 );
}
@@ -143,7 +143,7 @@ ROM_END
// rom_region - device-specific ROM region
//-------------------------------------------------
-const rom_entry *c8250lp_t::device_rom_region() const
+const tiny_rom_entry *c8250lp_t::device_rom_region() const
{
return ROM_NAME( c8250lp );
}
@@ -173,7 +173,7 @@ ROM_END
// rom_region - device-specific ROM region
//-------------------------------------------------
-const rom_entry *sfd1001_t::device_rom_region() const
+const tiny_rom_entry *sfd1001_t::device_rom_region() const
{
return ROM_NAME( sfd1001 );
}