diff options
author | Paul Selkirk <paul@psgd.org> | 2015-11-16 14:26:06 -0500 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2015-11-16 14:26:06 -0500 |
commit | 6bc2d51db70e599d010971aefc1d01c854622e40 (patch) | |
tree | 3537c1f7096c25101a7911e53cac196ac7d921c2 /src | |
parent | 47bd5c59ef56ed4d88370d9c45f6b1429557d5ad (diff) |
harmonize ctrl and status addresses with other cores
Diffstat (limited to 'src')
-rw-r--r-- | src/rtl/avalanche_entropy.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rtl/avalanche_entropy.v b/src/rtl/avalanche_entropy.v index 7ba76ac..6ae824a 100644 --- a/src/rtl/avalanche_entropy.v +++ b/src/rtl/avalanche_entropy.v @@ -76,10 +76,10 @@ module avalanche_entropy( localparam ADDR_NAME1 = 8'h01; localparam ADDR_VERSION = 8'h02; - localparam ADDR_CTRL = 8'h10; + localparam ADDR_CTRL = 8'h08; localparam CTRL_ENABLE_BIT = 0; - localparam ADDR_STATUS = 8'h11; + localparam ADDR_STATUS = 8'h09; localparam STATUS_VALID_BIT = 0; localparam ADDR_ENTROPY = 8'h20; |