1 WARP 8 THREADS TESTED + FULLY WORKING

This commit is contained in:
felsabbagh3
2019-03-31 05:21:00 -04:00
parent c83ef94d02
commit 8c2ae97510
21 changed files with 6389 additions and 998 deletions

View File

@@ -38,7 +38,7 @@ module VX_register_file (
always @(posedge clk) begin
if(write_enable) begin
$display("RF: Writing %h to %d",write_data, write_register);
// $display("RF: Writing %h to %d",write_data, write_register);
registers[write_register] <= write_data;
end
end