mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 21:39:10 -04:00
minor update
This commit is contained in:
parent
eb4cbbd4e2
commit
c0378b1fcc
2 changed files with 4 additions and 4 deletions
|
@ -400,7 +400,7 @@ module VX_core_top #(
|
|||
|
||||
`ifdef EXT_F_ENABLE
|
||||
output wire fpu_req_valid,
|
||||
output wire [`INST_FPU_BITS-1:0] fpu_req_op_type,
|
||||
output wire [`INST_FPU_BITS-1:0] fpu_req_type,
|
||||
output wire [`INST_FMT_BITS-1:0] fpu_req_fmt,
|
||||
output wire [`INST_FRM_BITS-1:0] fpu_req_frm,
|
||||
output wire [`NUM_THREADS-1:0][`XLEN-1:0] fpu_req_dataa,
|
||||
|
@ -528,7 +528,7 @@ module VX_core_top #(
|
|||
) fpu_bus_if();
|
||||
|
||||
assign fpu_req_valid = fpu_bus_if.req_valid;
|
||||
assign fpu_req_op_type = fpu_bus_if.req_op_type;
|
||||
assign fpu_req_type = fpu_bus_if.req_type;
|
||||
assign fpu_req_fmt = fpu_bus_if.req_fmt;
|
||||
assign fpu_req_frm = fpu_bus_if.req_frm;
|
||||
assign fpu_req_dataa = fpu_bus_if.req_dataa;
|
||||
|
|
|
@ -54,7 +54,7 @@ module VX_fpu_unit #(
|
|||
.reset (reset),
|
||||
|
||||
.valid_in (fpu_bus_if.req_valid),
|
||||
.op_type (fpu_bus_if.req_op_type),
|
||||
.op_type (fpu_bus_if.req_type),
|
||||
.fmt (fpu_bus_if.req_fmt),
|
||||
.frm (fpu_bus_if.req_frm),
|
||||
.dataa (fpu_bus_if.req_dataa),
|
||||
|
@ -81,7 +81,7 @@ module VX_fpu_unit #(
|
|||
.reset (reset),
|
||||
|
||||
.valid_in (fpu_bus_if.req_valid),
|
||||
.op_type (fpu_bus_if.req_op_type),
|
||||
.op_type (fpu_bus_if.req_type),
|
||||
.fmt (fpu_bus_if.req_fmt),
|
||||
.frm (fpu_bus_if.req_frm),
|
||||
.dataa (fpu_bus_if.req_dataa),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue