Passing all tests with 2 threads

This commit is contained in:
felsabbagh3
2019-03-30 03:54:20 -04:00
parent d02c3d25b7
commit 99a0792a0c
30 changed files with 116803 additions and 3316 deletions

View File

@@ -59,6 +59,15 @@ module VX_memory (
assign out_PC_next = in_PC_next;
assign out_valid = in_valid;
always @(*) begin
if (in_cache_driver_out_data[0] != 32'hbabebabe)
begin
$display("MEM: data read from cache_driver: %h", in_cache_driver_out_data[0]);
end
end
assign out_branch_dest = $signed(in_curr_PC) + ($signed(in_branch_offset) << 1);