The LPT control registers are now initialized to 0x04.

This commit is contained in:
OBattler
2018-11-09 20:05:32 +01:00
parent b42d380f3b
commit c91b1f2b8e
3 changed files with 5 additions and 3 deletions

View File

@@ -80,7 +80,7 @@ void lpt_devices_close()
}
}
static uint8_t lpt_dats[3], lpt_ctrls[3];
static uint8_t lpt_dats[3], lpt_ctrls[3] = { 0x04, 0x04, 0x04 };
void lpt_write(int i, uint16_t port, uint8_t val, void *priv)
{