diff options
author | 2013-06-13 15:43:56 +0000 | |
---|---|---|
committer | 2013-06-13 15:43:56 +0000 | |
commit | ff3a7687864710f970e9b11a9f21a0ac68b05543 (patch) | |
tree | 47dfca79ab29f5e4bbd2b7fff94338e693f9dcba /src/mess/includes/genpc.h | |
parent | 5c509024c270470233990a4c20f2efbae2093c28 (diff) |
PC driver cleanup:
- Much improved CS4031 emulation, added DMA, interrupt controller, timer, RTC directly to the device as sub devices and added the generic functions needed for AT compatibility
- Moved the ct486 driver to its own file, to avoid all the legacy stuff in at.c
- Added support for the IOCHCK signal to the ISA bus, this is used instead of directly issuing an NMI to the main CPU
- Moved ISA device slot definitions to its own file to avoid copy & pasting the same list to different drivers
- Updated MC146818 RTC for devcb2
Diffstat (limited to 'src/mess/includes/genpc.h')
-rw-r--r-- | src/mess/includes/genpc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mess/includes/genpc.h b/src/mess/includes/genpc.h index 4494a2f7d03..cfde45d50ba 100644 --- a/src/mess/includes/genpc.h +++ b/src/mess/includes/genpc.h @@ -11,6 +11,7 @@ #include "machine/i8255.h" #include "machine/am9517a.h" #include "machine/isa.h" +#include "machine/isa_cards.h" #include "machine/pc_kbdc.h" #include "machine/pic8259.h" #include "machine/pit8253.h" |