diff --git a/Source/Doc/SystemGuide.md b/Source/Doc/SystemGuide.md index 5a64fbf1..a17bbc19 100644 --- a/Source/Doc/SystemGuide.md +++ b/Source/Doc/SystemGuide.md @@ -768,10 +768,11 @@ below enumerates these values. | CIODEV_DUART | 0x09 | SCC2681 Family Dual UART | duart.asm | | CIODEV_Z2U | 0x0A | Zilog Z280 Built-in Serial Ports | z2u.asm | | CIODEV_LPT | 0x0B | Parallel I/O Controller | lpt.asm | -| CIODEV_ESPCON | 0x0B | ESP32 VGA Console | esp.asm | -| CIODEV_ESPSER | 0x0B | ESP32 Serial Port | esp.asm | -| CIODEV_SCON | 0x0B | S100 Console | scon.asm | -| CIODEV_EZ80UART | 0x11 | eZ80 Built-in UART0 Interface | ez80uart.asm | +| CIODEV_ESPCON | 0x0C | ESP32 VGA Console | esp.asm | +| CIODEV_ESPSER | 0x0D | ESP32 Serial Port | esp.asm | +| CIODEV_SCON | 0x0E | S100 Console | scon.asm | +| CIODEV_SSER | 0x0F | Simple Serial Console | sser.asm | +| CIODEV_EZ80UART | 0x10 | eZ80 Built-in UART0 Interface | ez80uart.asm | Character devices can usually be configured with line characteristics such as speed, framing, etc. A word value (16 bit) is used to describe diff --git a/Source/HBIOS/hbios.inc b/Source/HBIOS/hbios.inc index f09f2dea..3debaa0b 100644 --- a/Source/HBIOS/hbios.inc +++ b/Source/HBIOS/hbios.inc @@ -393,9 +393,8 @@ CIODEV_LPT .EQU $0B CIODEV_ESPCON .EQU $0C CIODEV_ESPSER .EQU $0D CIODEV_SCON .EQU $0E -CIODEV_EF .EQU $0F -CIODEV_SSER .EQU $10 -CIODEV_EZ80UART .EQU $11 +CIODEV_SSER .EQU $0F +CIODEV_EZ80UART .EQU $10 ; ; SUB TYPES OF CHAR DEVICES ;