mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
interconnect/axi: Add 8-bit/16-bit data-widths.
This commit is contained in:
parent
838a30f148
commit
f7e05b1953
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ class AXIInterface:
|
|||
):
|
||||
# Parameters checks.
|
||||
# ------------------
|
||||
assert data_width in [32, 64, 128, 256, 512, 1024]
|
||||
assert data_width in [8, 16, 32, 64, 128, 256, 512, 1024]
|
||||
assert version in ["axi3", "axi4"]
|
||||
|
||||
# Parameters.
|
||||
|
|
Loading…
Reference in a new issue