summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/pc8401a.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/includes/pc8401a.h')
-rw-r--r--src/mess/includes/pc8401a.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/includes/pc8401a.h b/src/mess/includes/pc8401a.h
index ef421c9ae18..902236b69a4 100644
--- a/src/mess/includes/pc8401a.h
+++ b/src/mess/includes/pc8401a.h
@@ -65,7 +65,7 @@ public:
DECLARE_READ8_MEMBER( ppi_pc_r );
DECLARE_WRITE8_MEMBER( ppi_pc_w );
DECLARE_PALETTE_INIT(pc8401a);
-
+
void scan_keyboard();
void bankswitch(UINT8 data);
=128&d=retro' /> Aaron Giles2011-04-271-6/+5 * Collapsed device_config and device_t into one class. Updated all Aaron Giles2011-04-271-284/+108 * Rename state_manager -> save_manager since the term "state" is overloaded. Aaron Giles2011-04-201-3/+3 * Privatized most of the m_machine pointers in the system to prevent Aaron Giles2011-04-191-1/+3 * Switch from m_machine to machine() everywhere. In some cases this Aaron Giles2011-04-181-0/+2 * (Big tangle of changes that all happened as I was looking into the ROM Aaron Giles2011-04-131-1/+5 * Move overridable device->rom_region(), device->machine_config_additions(), and Aaron Giles2011-03-301-6/+7 * Add template specializations for device/state/memory interfaces that are Aaron Giles2011-03-291-0/+3 * BIG update. Aaron Giles2011-03-291-7/+7 * Added device_t::memory() to fetch a reference to the memory interface, Aaron Giles2011-03-271-7/+9 * Added possibility of altering default input port setting for devices. [Miodra...