1
0
mirror of https://github.com/corundum/corundum.git synced 2025-01-30 08:32:52 +08:00

Update parameter ordering

This commit is contained in:
Alex Forencich 2018-10-25 10:20:17 -07:00
parent 09a8fa51b6
commit cb9f2132a4
3 changed files with 4 additions and 4 deletions

View File

@ -31,8 +31,8 @@ THE SOFTWARE.
*/
module axis_frame_join #
(
parameter DATA_WIDTH = 8,
parameter S_COUNT = 4,
parameter DATA_WIDTH = 8,
parameter TAG_ENABLE = 1,
parameter TAG_WIDTH = 16
)

View File

@ -44,8 +44,8 @@ build_cmd = "iverilog -o %s.vvp %s" % (testbench, src)
def bench():
# Parameters
DATA_WIDTH = 8
S_COUNT = 4
DATA_WIDTH = 8
TAG_ENABLE = 1
TAG_WIDTH = 16

View File

@ -32,8 +32,8 @@ THE SOFTWARE.
module test_axis_frame_join_4;
// Parameters
parameter DATA_WIDTH = 8;
parameter S_COUNT = 4;
parameter DATA_WIDTH = 8;
parameter TAG_ENABLE = 1;
parameter TAG_WIDTH = 16;
@ -85,8 +85,8 @@ initial begin
end
axis_frame_join #(
.DATA_WIDTH(DATA_WIDTH),
.S_COUNT(S_COUNT),
.DATA_WIDTH(DATA_WIDTH),
.TAG_ENABLE(TAG_ENABLE),
.TAG_WIDTH(TAG_WIDTH)
)