Rename "Offset" column to "Address" in peripherals description
This commit is contained in:
22
README.md
22
README.md
@@ -42,14 +42,14 @@ You could use any HTTP server that sets these headers.
|
|||||||
|
|
||||||
# Terminal
|
# Terminal
|
||||||
|
|
||||||
| Name | Offset | Size / B | Access |
|
| Name | Address | Size / B | Access |
|
||||||
|--------|--------|----------|--------------|
|
|--------|---------|----------|--------------|
|
||||||
| TXBUF | 0 | 32 | write |
|
| TXBUF | 0 | 32 | write |
|
||||||
| RXBUF | 32 | 32 | read |
|
| RXBUF | 32 | 32 | read |
|
||||||
| TXHEAD | 64 | 1 | atomic read |
|
| TXHEAD | 64 | 1 | atomic read |
|
||||||
| TXTAIL | 65 | 1 | atomic write |
|
| TXTAIL | 65 | 1 | atomic write |
|
||||||
| RXHEAD | 66 | 1 | atomic write |
|
| RXHEAD | 66 | 1 | atomic write |
|
||||||
| RXTAIL | 67 | 1 | atomic read |
|
| RXTAIL | 67 | 1 | atomic read |
|
||||||
|
|
||||||
For both sending (`TX`) and receiving (`RX`), there are three
|
For both sending (`TX`) and receiving (`RX`), there are three
|
||||||
registers: `xBUF`, `xHEAD` and `xTAIL`:
|
registers: `xBUF`, `xHEAD` and `xTAIL`:
|
||||||
@@ -65,9 +65,9 @@ unoccupied byte between the tail and the head.
|
|||||||
|
|
||||||
# System status
|
# System status
|
||||||
|
|
||||||
| Name | Offset | Size / B | Access |
|
| Name | Address | Size / B | Access |
|
||||||
|----------|--------|----------|--------------|
|
|----------|---------|----------|--------------|
|
||||||
| SYSREADY | 68 | 1 | atomic write |
|
| SYSREADY | 68 | 1 | atomic write |
|
||||||
|
|
||||||
The `SYSREADY` register is used to indicate when the system has booted
|
The `SYSREADY` register is used to indicate when the system has booted
|
||||||
up and is ready for user input.
|
up and is ready for user input.
|
||||||
|
|||||||
Reference in New Issue
Block a user