Commit 0cc92a88 authored by Maciej Lipinski's avatar Maciej Lipinski

[wr streamers/testbench] made old testbenches to work with updated streamers

parent dcd569f8
...@@ -109,7 +109,10 @@ module main; ...@@ -109,7 +109,10 @@ module main;
#( #(
.g_data_width (g_record_size), .g_data_width (g_record_size),
.g_tx_threshold (8), .g_tx_threshold (8),
.g_tx_timeout (512) .g_tx_buffer_size(16),
.g_tx_max_words_per_frame(16),
.g_tx_timeout (512),
.g_simulation(1)
) )
U_TX_Streamer U_TX_Streamer
( (
...@@ -141,7 +144,8 @@ module main; ...@@ -141,7 +144,8 @@ module main;
rx_streamer rx_streamer
#( #(
.g_data_width (g_record_size) .g_data_width (g_record_size),
.g_simulation(1)
) )
U_RX_Streamer U_RX_Streamer
( (
......
...@@ -165,7 +165,10 @@ module main; ...@@ -165,7 +165,10 @@ module main;
#( #(
.g_data_width (g_word_width), .g_data_width (g_word_width),
.g_tx_threshold (8), .g_tx_threshold (8),
.g_tx_timeout (128) .g_tx_buffer_size(16),
.g_tx_max_words_per_frame(16),
.g_tx_timeout (128),
.g_simulation(1)
) )
U_TX_Streamer U_TX_Streamer
( (
...@@ -198,7 +201,8 @@ module main; ...@@ -198,7 +201,8 @@ module main;
rx_streamer rx_streamer
#( #(
.g_data_width (g_word_width) .g_data_width (g_word_width),
.g_simulation(1)
) )
U_RX_Streamer U_RX_Streamer
( (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment