|
|
| version 1.1.1.1, 2003/10/16 17:57:55 | version 1.4, 2007/11/03 00:00:20 |
|---|---|
| Line 1 | Line 1 |
| #include "compiler.h" | #include "compiler.h" |
| #include "i286.h" | |
| #include "pccore.h" | #include "pccore.h" |
| #include "iocore.h" | #include "iocore.h" |
| #include "memory.h" | |
| // ---- I/O | // ---- I/O |
| static void IOOUTCALL nmiio_o50(UINT port, BYTE dat) { | static void IOOUTCALL nmiio_o50(UINT port, REG8 dat) { |
| nmiio.enable = 0; | nmiio.enable = 0; |
| (void)port; | (void)port; |
| (void)dat; | (void)dat; |
| } | } |
| static void IOOUTCALL nmiio_o52(UINT port, BYTE dat) { | static void IOOUTCALL nmiio_o52(UINT port, REG8 dat) { |
| nmiio.enable = 1; | nmiio.enable = 1; |
| (void)port; | (void)port; |
| Line 27 static void IOOUTCALL nmiio_o52(UINT por | Line 25 static void IOOUTCALL nmiio_o52(UINT por |
| static const IOOUT nmiioo50[2] = { | static const IOOUT nmiioo50[2] = { |
| nmiio_o50, nmiio_o52}; | nmiio_o50, nmiio_o52}; |
| void nmiio_reset(void) { | void nmiio_reset(const NP2CFG *pConfig) { |
| ZeroMemory(&nmiio, sizeof(nmiio)); | ZeroMemory(&nmiio, sizeof(nmiio)); |
| (void)pConfig; | |
| } | } |
| void nmiio_bind(void) { | void nmiio_bind(void) { |