diff options
author | 2008-06-26 15:34:42 +0000 | |
---|---|---|
committer | 2008-06-26 15:34:42 +0000 | |
commit | 652fc279ae6e7ae2c113ad0cb48d9e71fce0e05a (patch) | |
tree | 3c606fe9d0598299461bb4e1b92b32c2d10bfc3e /src/emu/machine/ds1302.h | |
parent | ba2fb8554b740f9f976501647d0b6c1307c17971 (diff) |
From: Oliver Stoeneberg [mailto:oliverst@online.de]
Subject: another Machine -> machine cleanup
This cleans up most of the Machine stuff in src/emu/machine. There is
a bit left to clean up, but it's mostly stuck at some interfaces now.
Diffstat (limited to 'src/emu/machine/ds1302.h')
-rw-r--r-- | src/emu/machine/ds1302.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/ds1302.h b/src/emu/machine/ds1302.h index 7e77c6588d7..68602958a18 100644 --- a/src/emu/machine/ds1302.h +++ b/src/emu/machine/ds1302.h @@ -1,5 +1,5 @@ extern void DS1302_RST(UINT8 val); extern void DS1302_DAT(UINT8 val); -extern void DS1302_CLK(UINT8 val); +extern void DS1302_CLK(running_machine *machine, UINT8 val); extern UINT8 DS1302_RD(void); |