Added the Biostar 8500TUC (430HX AMI Hi-Flex) and fixed a PIC 2 bug.

This commit is contained in:
OBattler
2020-06-21 02:14:58 +02:00
parent f7bbe60567
commit d375b00c8c
4 changed files with 34 additions and 1 deletions

View File

@@ -407,7 +407,7 @@ pic2_write(uint16_t addr, uint8_t val, void *priv)
if (val & 4)
pic2.read=4;
if (val & 2)
pic2.read=(val & 3);
pic2.read=(val & 1);
}
}
}