mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-24 05:47:35 -04:00
minor update
This commit is contained in:
parent
4b8ca42e85
commit
83badaac86
1 changed files with 4 additions and 2 deletions
|
@ -97,8 +97,10 @@ module VX_elastic_buffer #(
|
|||
wire [DATAW-1:0] data_out_t;
|
||||
wire ready_out_t;
|
||||
|
||||
wire valid_out_t = ~empty;
|
||||
|
||||
wire push = valid_in && ready_in;
|
||||
wire pop = ~empty && ready_out_t;
|
||||
wire pop = valid_out_t && ready_out_t;
|
||||
|
||||
VX_fifo_queue #(
|
||||
.DATAW (DATAW),
|
||||
|
@ -127,7 +129,7 @@ module VX_elastic_buffer #(
|
|||
) out_buf (
|
||||
.clk (clk),
|
||||
.reset (reset),
|
||||
.valid_in (~empty),
|
||||
.valid_in (valid_out_t),
|
||||
.data_in (data_out_t),
|
||||
.ready_in (ready_out_t),
|
||||
.valid_out (valid_out),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue