Skip to content

Commit

Permalink
declared ports type as wire and update version
Browse files Browse the repository at this point in the history
  • Loading branch information
NouranAbdelaziz committed May 20, 2024
1 parent 19f7fc5 commit 7ac0912
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 26 deletions.
4 changes: 2 additions & 2 deletions EF_SPI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ info:
license: APACHE 2.0
author: Mohamed Shalan
email: [email protected]
version: v1.0.3
date: 19-5-2024
version: v1.0.4
date: 20-5-2024
category: digital
tags:
- peripheral
Expand Down
8 changes: 4 additions & 4 deletions hdl/rtl/bus_wrappers/EF_SPI_AHBL.pp.v
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ module EF_SPI_AHBL #(
output wire [31:0] HRDATA,
output wire IRQ
,
input [1-1:0] miso,
output [1-1:0] mosi,
output [1-1:0] csb,
output [1-1:0] sclk
input wire [1-1:0] miso,
output wire [1-1:0] mosi,
output wire [1-1:0] csb,
output wire [1-1:0] sclk
);

localparam RXDATA_REG_OFFSET = 16'h0000;
Expand Down
8 changes: 4 additions & 4 deletions hdl/rtl/bus_wrappers/EF_SPI_AHBL.v
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ module EF_SPI_AHBL #(
FAW = 4
) (
`AHBL_SLAVE_PORTS,
input [1-1:0] miso,
output [1-1:0] mosi,
output [1-1:0] csb,
output [1-1:0] sclk
input wire [1-1:0] miso,
output wire [1-1:0] mosi,
output wire [1-1:0] csb,
output wire [1-1:0] sclk
);

localparam RXDATA_REG_OFFSET = `AHBL_AW'h0000;
Expand Down
8 changes: 4 additions & 4 deletions hdl/rtl/bus_wrappers/EF_SPI_APB.pp.v
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ module EF_SPI_APB #(
output wire [31:0] PRDATA,
output wire IRQ
,
input [1-1:0] miso,
output [1-1:0] mosi,
output [1-1:0] csb,
output [1-1:0] sclk
input wire [1-1:0] miso,
output wire [1-1:0] mosi,
output wire [1-1:0] csb,
output wire [1-1:0] sclk
);

localparam RXDATA_REG_OFFSET = 16'h0000;
Expand Down
8 changes: 4 additions & 4 deletions hdl/rtl/bus_wrappers/EF_SPI_APB.v
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ module EF_SPI_APB #(
FAW = 4
) (
`APB_SLAVE_PORTS,
input [1-1:0] miso,
output [1-1:0] mosi,
output [1-1:0] csb,
output [1-1:0] sclk
input wire [1-1:0] miso,
output wire [1-1:0] mosi,
output wire [1-1:0] csb,
output wire [1-1:0] sclk
);

localparam RXDATA_REG_OFFSET = `APB_AW'h0000;
Expand Down
8 changes: 4 additions & 4 deletions hdl/rtl/bus_wrappers/EF_SPI_WB.pp.v
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ module EF_SPI_WB #(
output reg ack_o,
input wire we_i,
output wire IRQ,
input [1-1:0] miso,
output [1-1:0] mosi,
output [1-1:0] csb,
output [1-1:0] sclk
input wire [1-1:0] miso,
output wire [1-1:0] mosi,
output wire [1-1:0] csb,
output wire [1-1:0] sclk
);

localparam RXDATA_REG_OFFSET = 16'h0000;
Expand Down
8 changes: 4 additions & 4 deletions hdl/rtl/bus_wrappers/EF_SPI_WB.v
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ module EF_SPI_WB #(
FAW = 4
) (
`WB_SLAVE_PORTS,
input [1-1:0] miso,
output [1-1:0] mosi,
output [1-1:0] csb,
output [1-1:0] sclk
input wire [1-1:0] miso,
output wire [1-1:0] mosi,
output wire [1-1:0] csb,
output wire [1-1:0] sclk
);

localparam RXDATA_REG_OFFSET = `WB_AW'h0000;
Expand Down

0 comments on commit 7ac0912

Please sign in to comment.