8000 Wrong Character device name displayed. · Issue #557 · wwarthen/RomWBW · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Wrong Character device name displayed. #557

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
PeterOGB opened this issue May 26, 2025 · 1 comment
Closed

Wrong Character device name displayed. #557

PeterOGB opened this issue May 26, 2025 · 1 comment

Comments

@PeterOGB
Copy link
Contributor

In hbios.asm the entry "CIODEV_EF .EQU $0F" has been removed

3.5.0 version

CIODEV_SCON .EQU $0E
CIODEV_EF .EQU $0F
CIODEV_SSER .EQU $10
CIODEV_EZ80UART .EQU $11
CIODEV_RP .EQU $12

3.5.1 version

CIODEV_SCON .EQU $0E
CIODEV_SSER .EQU $0F
CIODEV_EZ80UART .EQU $10
CIODEV_RP .EQU $11

Note that CIODEV_RP is the "dumb terminal" device for my graphics card that is used to display the startup diagnostics.

However the associated device name string has not been removed for the table of "CHARACTER DEVICE STRINGS" in hbios.asm

PS_SDSCON .TEXT "SCON$"
PS_SDEF .TEXT "EF$" <<<<<<<<<<<<< This line should be removed.
PS_SDSSER .TEXT "SSER$"
PS_SDEZ80 .TEXT "EZ80$"
PS_RPCIO .TEXT "RPCIO$"

This is causing my device to appear with the name "EZ800" rather than "RPCIO0". I expect it is causing SSER and EZ80 devices to also get the wrong name printed.

HTH

PeterO

wwarthen added a commit that referenced this issue May 26, 2025
An extraneous character device enumeration string had not been deleted as needed.  This has been fixed.

Thanks and credit to @PeterOGB.
@wwarthen
Copy link
Owner

Thank you @PeterOGB. This has been fixed with the latest commit.

-Wayne

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants
0