diff options
author | 2010-06-03 13:39:38 +0000 | |
---|---|---|
committer | 2010-06-03 13:39:38 +0000 | |
commit | 8ed71397df0cda8218c80902a0e542fb59b50b58 (patch) | |
tree | 0ce001d9fedb8c8088d721604056da0fc9657b50 /src/emu/machine/at28c16.h | |
parent | 62caa9ca9b75c5e10aa332a42e1bfc2a253dd417 (diff) |
Changed two write funcs into WRITE_LINE_DEVICE_HANDLERs. No whatsnew
Diffstat (limited to 'src/emu/machine/at28c16.h')
-rw-r--r-- | src/emu/machine/at28c16.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/machine/at28c16.h b/src/emu/machine/at28c16.h index 075479cc707..e630c859823 100644 --- a/src/emu/machine/at28c16.h +++ b/src/emu/machine/at28c16.h @@ -22,8 +22,8 @@ DEVICE_GET_INFO(at28c16); MDRV_DEVICE_CONFIG_DATAPTR(at28c16_config, id, _id) -extern void at28c16_a9_12v( running_device *device, int a9_12v ); -extern void at28c16_oe_12v( running_device *device, int a9_12v ); +WRITE_LINE_DEVICE_HANDLER( at28c16_a9_12v ); +WRITE_LINE_DEVICE_HANDLER( at28c16_oe_12v ); /* memory handlers */ |