summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/8042kbdc.h
diff options
context:
space:
mode:
author Wilbert Pol <wilbert@jdg.info>2008-04-08 18:35:48 +0000
committer Wilbert Pol <wilbert@jdg.info>2008-04-08 18:35:48 +0000
commit8dcedabb578ddd6d55b71719a6c78b793ed9f25a (patch)
tree6f6a568322d73f796d70ed49937b0e0b996a76e3 /src/emu/machine/8042kbdc.h
parentea8471679b26b726e2ade0d9c235675fcf99b9fb (diff)
Removed the hardcoded dependency on a 8254 device from the 8042kbdc code. Changed the drivers using the 8042kdbc to define their own 8042kdbc - 8254 dependency.
Diffstat (limited to 'src/emu/machine/8042kbdc.h')
-rw-r--r--src/emu/machine/8042kbdc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/machine/8042kbdc.h b/src/emu/machine/8042kbdc.h
index 50113e88790..06fa4cc3b87 100644
--- a/src/emu/machine/8042kbdc.h
+++ b/src/emu/machine/8042kbdc.h
@@ -23,6 +23,7 @@ struct kbdc8042_interface
kbdc8042_type_t type;
void (*set_gate_a20)(int a20);
void (*keyboard_interrupt)(int state);
+ int (*get_out2)(running_machine *machine);
};