Add the Dell System 333s/L.

This commit is contained in:
OBattler
2025-05-28 19:41:27 +02:00
parent e9c7795c7a
commit 9ebcc44350
9 changed files with 152 additions and 11 deletions

View File

@@ -47,11 +47,12 @@ sio_detect_write(uint16_t port, uint8_t val, void *priv)
static uint8_t
sio_detect_read(uint16_t port, void *priv)
{
const sio_detect_t *dev = (sio_detect_t *) priv;
/*const sio_detect_t *dev = (sio_detect_t *) priv*/;
uint8_t ret = 0xff /*dev->regs[port & 1]*/;
pclog("sio_detect_read : port=%04x = %02X\n", port, dev->regs[port & 1]);
pclog("sio_detect_read : port=%04x = %02X\n", port, ret);
return 0xff /*dev->regs[port & 1]*/;
return ret;
}
static void