Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Verilator Compatibility #47

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions rtl/arbiter.v
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ THE SOFTWARE.

// Language: Verilog 2001

// verilator lint_off WIDTH
// verilator lint_off LITENDIAN

`resetall
`timescale 1ns / 1ps
`default_nettype none
Expand Down
4 changes: 4 additions & 0 deletions rtl/axil_crossbar_addr.v
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ THE SOFTWARE.

// Language: Verilog 2001

// verilator lint_off WIDTH
// verilator lint_off LITENDIAN
// verilator lint_off CASEINCOMPLETE

`resetall
`timescale 1ns / 1ps
`default_nettype none
Expand Down
4 changes: 4 additions & 0 deletions rtl/axil_crossbar_rd.v
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ THE SOFTWARE.

// Language: Verilog 2001

// verilator lint_off WIDTH
// verilator lint_off LITENDIAN
// verilator lint_off UNSIGNED

`resetall
`timescale 1ns / 1ps
`default_nettype none
Expand Down
4 changes: 4 additions & 0 deletions rtl/axil_crossbar_wr.v
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ THE SOFTWARE.

// Language: Verilog 2001

// verilator lint_off WIDTH
// verilator lint_off LITENDIAN
// verilator lint_off UNSIGNED

`resetall
`timescale 1ns / 1ps
`default_nettype none
Expand Down
4 changes: 4 additions & 0 deletions rtl/priority_encoder.v
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ THE SOFTWARE.

// Language: Verilog 2001

// verilator lint_off WIDTH
// verilator lint_off LITENDIAN
// verilator lint_off UNOPTFLAT

`resetall
`timescale 1ns / 1ps
`default_nettype none
Expand Down
3 changes: 0 additions & 3 deletions tb/axil_crossbar/test_axil_crossbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,6 @@ def test_axil_crossbar(request, s_count, m_count, data_width):

parameters = {}

parameters['S_COUNT'] = s_count
parameters['M_COUNT'] = m_count

parameters['DATA_WIDTH'] = data_width
parameters['ADDR_WIDTH'] = 32
parameters['STRB_WIDTH'] = parameters['DATA_WIDTH'] // 8
Expand Down