removing ebreak signals from public interface

This commit is contained in:
Blaise Tine
2021-06-10 12:57:44 -07:00
parent adf033b0aa
commit cbca7e12c6
6 changed files with 10 additions and 29 deletions

View File

@@ -41,8 +41,7 @@ module VX_execute #(
VX_commit_if fpu_commit_if,
VX_commit_if gpu_commit_if,
input wire busy,
output wire ebreak
input wire busy
);
VX_fpu_to_csr_if fpu_to_csr_if();
wire[`NUM_WARPS-1:0] csr_pending;
@@ -132,9 +131,4 @@ module VX_execute #(
.gpu_commit_if (gpu_commit_if)
);
assign ebreak = alu_req_if.valid
&& `IS_BR_MOD(alu_req_if.op_mod)
&& (`BR_OP(alu_req_if.op_type) == `BR_EBREAK
|| `BR_OP(alu_req_if.op_type) == `BR_ECALL);
endmodule