summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/lpc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/lpc.h')
-rw-r--r--src/emu/machine/lpc.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/emu/machine/lpc.h b/src/emu/machine/lpc.h
new file mode 100644
index 00000000000..7cb9587da59
--- /dev/null
+++ b/src/emu/machine/lpc.h
@@ -0,0 +1,15 @@
+#ifndef LPC_H
+#define LPC_H
+
+#include "emu.h"
+
+class lpc_device : public device_t {
+public:
+ lpc_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
+
+ virtual void map_device(UINT64 memory_window_start, UINT64 memory_window_end, UINT64 memory_offset, address_space *memory_space,
+ UINT64 io_window_start, UINT64 io_window_end, UINT64 io_offset, address_space *io_space) = 0;
+};
+
+#endif
+