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
8e3bd5696b
commit
f0bff2a4a2
2 changed files with 4 additions and 4 deletions
|
@ -341,7 +341,7 @@ module VX_lsu_slice import VX_gpu_pkg::*; #(
|
|||
.core_req_tag (mem_req_tag),
|
||||
.core_req_ready (mem_req_ready),
|
||||
`UNUSED_PIN (core_req_empty),
|
||||
`UNUSED_PIN (core_write_notify),
|
||||
`UNUSED_PIN (core_req_wr_notify),
|
||||
|
||||
// Output response
|
||||
.core_rsp_valid (mem_rsp_valid),
|
||||
|
|
|
@ -55,7 +55,7 @@ module VX_mem_scheduler #(
|
|||
input wire [TAG_WIDTH-1:0] core_req_tag,
|
||||
output wire core_req_ready,
|
||||
output wire core_req_empty,
|
||||
output wire core_req_sent,
|
||||
output wire core_req_wr_notify,
|
||||
|
||||
// Core response
|
||||
output wire core_rsp_valid,
|
||||
|
@ -187,8 +187,8 @@ module VX_mem_scheduler #(
|
|||
// no pending requests
|
||||
assign core_req_empty = !reqq_valid && ibuf_empty;
|
||||
|
||||
// notify request submisison
|
||||
assign core_req_sent = reqq_valid && reqq_ready;
|
||||
// notify write request submisison
|
||||
assign core_req_wr_notify = reqq_valid && reqq_ready && reqq_rw;
|
||||
|
||||
// Index buffer ///////////////////////////////////////////////////////////
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue