diff options
author | Paul Selkirk <paul@psgd.org> | 2018-09-11 19:01:19 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2019-04-09 18:05:09 -0400 |
commit | 51d57abc29ae9763c9eecf5742eb8f382f057916 (patch) | |
tree | bfc61b54f12b736ca59af4c753bcf2efbb79ea5b /verilog_constants.h | |
parent | 0c705cbc938a5d70989cec02e5625cdbeda6959e (diff) |
Track Joachim's latest keywrap core - unroll bank-switched memory into a number of core register blocks.
Diffstat (limited to 'verilog_constants.h')
-rw-r--r-- | verilog_constants.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/verilog_constants.h b/verilog_constants.h index df808c4..8735b12 100644 --- a/verilog_constants.h +++ b/verilog_constants.h @@ -308,7 +308,6 @@ #define KEYWRAP_CONFIG_KEYLEN (2) #define KEYWRAP_ADDR_RLEN (0x0c) -#define KEYWRAP_ADDR_R_BANK (0x0d) #define KEYWRAP_ADDR_A0 (0x0e) #define KEYWRAP_ADDR_A1 (0x0f) @@ -321,8 +320,8 @@ #define KEYWRAP_ADDR_KEY6 (0x16) #define KEYWRAP_ADDR_KEY7 (0x17) -#define KEYWRAP_ADDR_R_DATA0 (0x80) -#define KEYWRAP_ADDR_R_DATA127 (0xff) +#define KEYWRAP_ADDR_R_DATA (0x1000) +#define KEYWRAP_LEN_R_DATA (0x1000) #endif /* _VERILOG_CONSTANTS_H_ */ |