diff options
author | Paul Selkirk <paul@psgd.org> | 2015-11-16 14:26:33 -0500 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2015-11-16 14:26:33 -0500 |
commit | 1d7af67f55e9bdf3d5a18ab36d737dc4d9dcae24 (patch) | |
tree | 48cd464974d2b662bcd091bde0eede58f78fa543 /src/rtl | |
parent | c55ec47275d51c4e09b8ee06a397f34d095c93ca (diff) |
harmonize ctrl and status addresses with other cores
Diffstat (limited to 'src/rtl')
-rw-r--r-- | src/rtl/rosc_entropy.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rtl/rosc_entropy.v b/src/rtl/rosc_entropy.v index 77af1f5..9c8a208 100644 --- a/src/rtl/rosc_entropy.v +++ b/src/rtl/rosc_entropy.v @@ -68,10 +68,10 @@ module rosc_entropy( parameter ADDR_NAME1 = 8'h01; parameter ADDR_VERSION = 8'h02; - parameter ADDR_CTRL = 8'h10; + parameter ADDR_CTRL = 8'h08; parameter CTRL_ENABLE_BIT = 0; - parameter ADDR_STATUS = 8'h11; + parameter ADDR_STATUS = 8'h09; parameter STATUS_ENTROPY_VALID_BIT = 0; parameter ADDR_OP_A = 8'h18; |