Reconsider I/O port address space: do ports need to be memory-mapped too? #14
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently the I/O ports accessible via IN/OUT also occupy 512 bytes of address space (
&60:00–&63:7F). This means those addresses are reserved even though the ports are fully accessible through the dedicated IN/OUT instructions.Question: could the I/O ports exist only on the I/O bus (via IN/OUT) and not consume any address space? That would free up 512 bytes for additional memory-mapped devices, more RAM, or other uses.
Counterarguments to consider:
This might not make sense — opening the discussion to think it through.