Fixes in README.md

This commit is contained in:
flowenol 2023-04-06 15:07:09 +02:00
parent 146e94aa6a
commit bdf728807f
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ entries for programmers:
| --- | --- |
| `$C000` | ready flag - contains 0x01 if the device is ready to write/read, 0x00 otherwise |
| `$C080` | read address - the location for data read from the interface, first read of this address switches the device to read mode |
| `$C081` | write address - the location for data to be written via the interface, first write to this address switches the device to write mode |
| `$C081` | write address - the location for data to be written via the interface. First write operation to this address switches the device to write mode. If you want to immediately write bytes after switching to write mode you must insert three `NOP` instructions before writing the first valid byte. |
| `$C23A` | software reset routine - resets the MCU |
| `$C1EC` | block read routine - reads data from the interface and writes to the specified address range |
| `$C213` | block write routine - reads the data from the specified address range and write via the interface |