Skip to content

Commit

Permalink
Merge pull request #44 from agrevin/main
Browse files Browse the repository at this point in the history
Update portnames to new py2 standart
  • Loading branch information
jjts authored Sep 20, 2024
2 parents a522777 + 2069eaf commit 213a9a9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions iob_vexriscv.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ def setup(py_params_dict):
],
"ports": [
{
"name": "clk_en_rst",
"name": "clk_en_rst_s",
"descr": "Clock, clock enable and reset",
"interface": {"type": "clk_en_rst", "subtype": "slave"},
},
{
"name": "rst",
"name": "rst_i",
"descr": "Synchronous reset",
"signals": [
{
Expand All @@ -56,7 +56,7 @@ def setup(py_params_dict):
],
},
{
"name": "i_bus",
"name": "i_bus_m",
"descr": "iob-picorv32 instruction bus",
"interface": {
"type": "axi",
Expand All @@ -70,7 +70,7 @@ def setup(py_params_dict):
},
},
{
"name": "d_bus",
"name": "d_bus_m",
"descr": "iob-picorv32 data bus",
"interface": {
"type": "axi",
Expand All @@ -84,7 +84,7 @@ def setup(py_params_dict):
},
},
{
"name": "clint_cbus",
"name": "clint_cbus_s",
"descr": "CLINT CSRs bus",
"interface": {
"type": "axil",
Expand All @@ -97,7 +97,7 @@ def setup(py_params_dict):
},
},
{
"name": "plic_cbus",
"name": "plic_cbus_s",
"descr": "PLIC CSRs bus",
"interface": {
"type": "axil",
Expand All @@ -110,7 +110,7 @@ def setup(py_params_dict):
},
},
{
"name": "plic_interrupts",
"name": "plic_interrupts_i",
"descr": "PLIC interrupts",
"signals": [
{
Expand Down

0 comments on commit 213a9a9

Please sign in to comment.