Fix EAB load mask command

This commit is contained in:
Andrew Kay 2021-05-02 19:10:18 -05:00
parent 925830f0a4
commit 24a8604aea
2 changed files with 2 additions and 2 deletions

View File

@ -259,7 +259,7 @@ Registers can be read-only, write-only, or read-write.
| Base | `DIAGNOSTIC_RESET` | `0` | `0` | `0` | `1` | `1` | `1` | `0` | `0` | `0` | `1` |
| All | `READ_FEATURE_ID` | _F_ | _F_ | _F_ | _F_ | `0` | `1` | `1` | `1` | `0` | `1` |
| EAB | `READ_DATA` | _F_ | _F_ | _F_ | _F_ | `0` | `0` | `1` | `1` | `0` | `1` |
| EAB | `LOAD_MASK` | _F_ | _F_ | _F_ | _F_ | `0` | `1` | `0` | `1` | `0` | `1` |
| EAB | `LOAD_MASK` | _F_ | _F_ | _F_ | _F_ | `0` | `1` | `1` | `0` | `0` | `1` |
| EAB | `WRITE_ALTERNATE` | _F_ | _F_ | _F_ | _F_ | `1` | `0` | `1` | `0` | `0` | `1` |
| EAB | `READ_MULTIPLE` | _F_ | _F_ | _F_ | _F_ | `1` | `0` | `1` | `1` | `0` | `1` |
| EAB | `WRITE_UNDER_MASK` | _F_ | _F_ | _F_ | _F_ | `1` | `1` | `0` | `0` | `0` | `1` |

View File

@ -41,7 +41,7 @@ class Command(Enum):
# EAB Feature
EAB_READ_DATA = 0x03
EAB_LOAD_MASK = 0x05
EAB_LOAD_MASK = 0x06
EAB_WRITE_ALTERNATE = 0x0a
EAB_READ_MULTIPLE = 0x0b
EAB_WRITE_UNDER_MASK = 0x0c