summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/keyboard.h
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2022-06-16 12:47:52 +0200
committer Olivier Galibert <galibert@pobox.com>2025-04-29 23:06:41 +0200
commit45d4cd52a8194f2ef9e0383cfb2e2a35634af6ff (patch)
tree4e8d8fcb7382a5e9e0bce5ec59939bcfbe67155a /src/devices/machine/keyboard.h
parent5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff)
full xtal conversionxtal
Diffstat (limited to 'src/devices/machine/keyboard.h')
-rw-r--r--src/devices/machine/keyboard.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/keyboard.h b/src/devices/machine/keyboard.h
index 2b4f32e856f..e2364eef3a6 100644
--- a/src/devices/machine/keyboard.h
+++ b/src/devices/machine/keyboard.h
@@ -77,7 +77,7 @@ public:
const machine_config &mconfig,
const char *tag,
device_t *owner,
- u32 clock);
+ const XTAL &clock);
template <typename... T>
void set_keyboard_callback(T &&... args)
@@ -93,7 +93,7 @@ protected:
device_type type,
char const *tag,
device_t *owner,
- u32 clock);
+ const XTAL &clock);
virtual void device_start() override;
virtual void device_reset() override;
virtual void key_make(u8 row, u8 column) override;
/+47 * Added AM_DEVREAD_MODERN/AM_DEVWRITE_MODERN/etc. macros for the non-modern Aaron Giles2010-09-051-2/+2 * Changed the MACHINE_DRIVER_* macros, as follows: Aaron Giles2010-09-011-10/+4 * (Wow, I had no idea quite so many drivers were using driver_data!) Aaron Giles2010-08-041-3/+3 * Cleaned up dead web links from the drivers - replacing when possible with alt... Scott Stone2010-07-171-3/+1 * Time to kill off some deadwood. Aaron Giles2010-07-071-1/+1 * WARNING: There are likely to be regressions in both functionality and Aaron Giles2010-06-081-7/+9 * Implemented proper irq ack to the deniam.c driver [Angelo Salese] Angelo Salese2010-02-181-4/+10 * Correct a long-standing design flaw: device configuration state Aaron Giles2010-01-181-1/+1 * Bulk driver.h -> emu.h switch. Aaron Giles2010-01-101-1/+1 * Removed the global "includes" include and instead specify the "includes" path... Phil Bennett2009-12-211-1/+1 * Not really worth credit: purged some direct use of SMH_RAM in favor of macros... Fabio Priuli2009-12-021-2/+2 * Make use of AM_BASE_SIZE_MEMBER macros. Aaron Giles2009-11-291-2/+2 * Cleaned up many driver data structs to obtain two results: Fabio Priuli2009-11-291-4/+5 * Removed global videoram, colorram, paletteram, and spriteram. Aaron Giles2009-11-281-2/+2 * Added save states to the following drivers: ddayjlc.c, ddealer.c, deniam.c, d... Fabio Priuli2009-11-251-37/+58 * Enforce a minimum tag length of 3 characters. This will enable Aaron Giles2009-11-151-4/+4 * forgot one comment, ignore for whatsnew Jonathan Gevaryahu2009-08-191-1/+4 * [Deniam.c] Verified and fixed M68K, Z80, YM3812 and OKIM6295 clocks and OKI p... Jonathan Gevaryahu2009-08-191-16/+22 * Added a BTANB note about Logic Pro 2 Angelo Salese2009-08-161-0/+4 * Update Deniam driver YM3812 clocks to match recording Jonathan Gevaryahu2009-07-091-2/+2 * Removed PREDECODE_GFX compile flag, as the on-the-fly decoding seems Aaron Giles2009-07-091-4/+4 * Removed second parameter from MDRV_CPU_PROGRAM_MAP, MDRV_CPU_DATA_MAP, Aaron Giles2009-05-091-4/+4 * More number-to-tag conversions in CPU calls. As a result, simplified dec8.c r... Fabio Priuli2009-04-281-4/+3 * Merged memory maps for all driver sources beginning with 'D': [MooglyGuy] Ryan Holtz2009-04-261-53/+28 * Removed msb/lsb handlers from taitosnd. Updated all drivers to Aaron Giles2009-03-301-4/+4 * Removed device types from device queries that use tags, under the Aaron Giles2009-03-021-8/+8 * Device tag renaming. Moving away from generic names like "main" Aaron Giles2009-02-251-14/+14 * Ok, this is The Big One. Aaron Giles2009-02-111-31/+16 * From: Atari Ace [atari_ace@verizon.net]