erge branch 'fpga_synthesis' of https://github.gatech.edu/casl/Vortex into fpga_synthesis

This commit is contained in:
Blaise Tine
2020-05-19 17:40:45 -07:00

View File

@@ -42,10 +42,11 @@ module VX_scheduler (
wire rename_valid = rs1_rename_qual || rs2_rename_qual || rd_rename_qual; wire rename_valid = rs1_rename_qual || rs2_rename_qual || rd_rename_qual;
assign schedule_delay = ((rename_valid) && (| bckE_req_if.valid)) assign schedule_delay = (|bckE_req_if.valid) &&
|| (memory_delay && is_mem) ((rename_valid ) ||
|| (gpr_stage_delay && (is_mem || is_exec)) (memory_delay && is_mem) ||
|| (exec_delay && is_exec); (gpr_stage_delay && (is_mem || is_exec)) ||
(exec_delay && is_exec));
integer i, w; integer i, w;