|
|
| version 1.17, 2004/03/19 00:30:01 | version 1.18, 2004/03/30 07:12:03 |
|---|---|
| Line 301 static REG8 IOINPCALL pic_i02(UINT port) | Line 301 static REG8 IOINPCALL pic_i02(UINT port) |
| // ---- I/F | // ---- I/F |
| #if !defined(SUPPORT_PC9821) | |
| static const IOOUT pico00[2] = { | static const IOOUT pico00[2] = { |
| pic_o00, pic_o02}; | pic_o00, pic_o02}; |
| static const IOINP pici00[2] = { | static const IOINP pici00[2] = { |
| pic_i00, pic_i02}; | pic_i00, pic_i02}; |
| #else | |
| static const IOOUT pico00[4] = { | |
| pic_o00, pic_o02, NULL, NULL}; | |
| static const IOINP pici00[4] = { | |
| pic_i00, pic_i02, NULL, NULL}; | |
| #endif | |
| void pic_reset(void) { | void pic_reset(void) { |
| Line 315 void pic_reset(void) { | Line 323 void pic_reset(void) { |
| void pic_bind(void) { | void pic_bind(void) { |
| #if !defined(SUPPORT_PC9821) | |
| iocore_attachsysoutex(0x0000, 0x0cf1, pico00, 2); | iocore_attachsysoutex(0x0000, 0x0cf1, pico00, 2); |
| iocore_attachsysinpex(0x0000, 0x0cf1, pici00, 2); | iocore_attachsysinpex(0x0000, 0x0cf1, pici00, 2); |
| #else | |
| iocore_attachsysoutex(0x0000, 0x0cf1, pico00, 4); | |
| iocore_attachsysinpex(0x0000, 0x0cf1, pici00, 4); | |
| #endif | |
| } | } |