Supports PC-98 again.

This commit is contained in:
KATO Takenori 1998-04-21 09:46:14 +00:00
parent 7b206e114e
commit bb9b85aaeb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=35368

View File

@ -1686,9 +1686,15 @@ attach_mss(struct address_info * hw_config)
/* /*
* Set the IRQ and DMA addresses. * Set the IRQ and DMA addresses.
*/ */
#ifdef PC98
static char interrupt_bits[13] = {
-1, -1, -1, 0x08, -1, 0x10, -1, -1, -1, -1, 0x18, -1, 0x20
};
#else
static char interrupt_bits[12] = { static char interrupt_bits[12] = {
-1, -1, -1, -1, -1, -1, -1, 0x08, -1, 0x10, 0x18, 0x20 -1, -1, -1, -1, -1, -1, -1, 0x08, -1, 0x10, 0x18, 0x20
}; };
#endif
static char dma_bits[4] = { static char dma_bits[4] = {
1, 2, 0, 3 1, 2, 0, 3
}; };