aboutsummaryrefslogtreecommitdiff
path: root/src/rtl/coretest_bp_entropy.v
diff options
context:
space:
mode:
authorJoachim StroĢˆmbergson <joachim@secworks.se>2014-06-12 09:10:52 +0200
committerJoachim StroĢˆmbergson <joachim@secworks.se>2014-06-12 09:10:52 +0200
commitcd471d6b82efdea6f83972bba67284e879111f89 (patch)
tree1627caf9deb414af3fbc852885c8d4e91ffb6743 /src/rtl/coretest_bp_entropy.v
parenta3d42dc2b51b911c05d6b9a7cf473721329324d3 (diff)
Update of RTL to include changes used during testing.HEADmaster
Diffstat (limited to 'src/rtl/coretest_bp_entropy.v')
-rw-r--r--src/rtl/coretest_bp_entropy.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rtl/coretest_bp_entropy.v b/src/rtl/coretest_bp_entropy.v
index bc8166a..9aaf35d 100644
--- a/src/rtl/coretest_bp_entropy.v
+++ b/src/rtl/coretest_bp_entropy.v
@@ -86,7 +86,7 @@ module coretest_bp_entropy(
reg ent_we;
reg [7 : 0] ent_address;
reg [31 : 0] ent_write_data;
- wire [15 : 0] ent_read_data;
+ wire [31 : 0] ent_read_data;
wire [7 : 0] ent_debug;
@@ -198,7 +198,7 @@ module coretest_bp_entropy(
ent_we = coretest_we;
ent_address = coretest_address[7 : 0];
ent_write_data = coretest_write_data[15 : 0];
- coretest_read_data = {16'h0000, ent_read_data};
+ coretest_read_data = ent_read_data;
coretest_error = 1'b0;
end