From b2e56f4dca772b3b7d72cfbcb63b9887b4a64892 Mon Sep 17 00:00:00 2001 From: Byron Lathi Date: Tue, 20 Aug 2024 18:57:08 -0700 Subject: [PATCH] Clean up spacing --- .../src/sub/network_processor/src/eth_wrapper.sv | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hw/super6502_fpga/src/sub/network_processor/src/eth_wrapper.sv b/hw/super6502_fpga/src/sub/network_processor/src/eth_wrapper.sv index d7fede8..eca314e 100644 --- a/hw/super6502_fpga/src/sub/network_processor/src/eth_wrapper.sv +++ b/hw/super6502_fpga/src/sub/network_processor/src/eth_wrapper.sv @@ -8,8 +8,8 @@ module eth_wrapper #( /* * AXI input */ - input wire [MAC_DATA_WIDTH-1:0] tx_axis_tdata, - input wire [MAC_KEEP_WIDTH-1:0] tx_axis_tkeep, + input wire [MAC_DATA_WIDTH-1:0] tx_axis_tdata, + input wire [MAC_KEEP_WIDTH-1:0] tx_axis_tkeep, input wire tx_axis_tvalid, output wire tx_axis_tready, input wire tx_axis_tlast, @@ -18,8 +18,8 @@ module eth_wrapper #( /* * AXI output */ - output wire [MAC_DATA_WIDTH-1:0] rx_axis_tdata, - output wire [MAC_KEEP_WIDTH-1:0] rx_axis_tkeep, + output wire [MAC_DATA_WIDTH-1:0] rx_axis_tdata, + output wire [MAC_KEEP_WIDTH-1:0] rx_axis_tkeep, output wire rx_axis_tvalid, input wire rx_axis_tready, output wire rx_axis_tlast,