Add the TMC PAT54PV

An ISA/VLB Socket 5 machine. Also makes KBC command A0 return 0x28 then 0 so that the BIOS can function.
This commit is contained in:
nerd73
2021-04-09 20:24:47 -06:00
parent 99ca313565
commit a4f16a799e
4 changed files with 30 additions and 0 deletions

View File

@@ -1325,6 +1325,11 @@ write64_ami(void *priv, uint8_t val)
dev->want60 = 1;
return 0;
case 0xa0: /* copyright message */
add_data(dev, 0x28);
add_data(dev, 0x00);
break;
case 0xa1: /* get controller version */
kbd_log("ATkbc: AMI - get controller version\n");
add_data(dev, 'H');