From 984461afc0017565e76e0f32bb9b3f5f8ba6b4e5 Mon Sep 17 00:00:00 2001 From: otroubi Date: Tue, 14 Jul 2026 13:55:58 +0300 Subject: [PATCH] shapper syntaxis corrected --- rtl/controller/src/shaper_axis_desc.sv | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/rtl/controller/src/shaper_axis_desc.sv b/rtl/controller/src/shaper_axis_desc.sv index 165e92d..7d61c93 100644 --- a/rtl/controller/src/shaper_axis_desc.sv +++ b/rtl/controller/src/shaper_axis_desc.sv @@ -1,16 +1,16 @@ module shaper_axis_desc #( - parameters DATA_WIDTH = 128; + parameter DATA_WIDTH = 128 ) ( - input clk; - input rst_n; - input logic [DATA_WIDTH-1:0] data_in; - input logic send; - input logic ready; + input clk, + input rst_n, + input logic [DATA_WIDTH-1:0] data_in, + input logic send, + input logic ready, - output logic busy; - output logic handshake; - output logic [DATA_WIDTH-1:0] data_out; - output logic valid; + output logic busy, + output logic handshake, + output logic [DATA_WIDTH-1:0] data_out, + output logic valid ); typedef enum logic [0:0] {