mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
cpu/naxriscv: Add default value to xlen argument.
This commit is contained in:
parent
8e440dc9ea
commit
1583cc8a40
1 changed files with 2 additions and 2 deletions
|
@ -92,8 +92,8 @@ class NaxRiscv(CPU):
|
|||
@staticmethod
|
||||
def args_fill(parser):
|
||||
cpu_group = parser.add_argument_group("cpu")
|
||||
cpu_group.add_argument("--scala-file", action='append', help="Specify the scala files used to configure NaxRiscv")
|
||||
cpu_group.add_argument("--xlen", help="Specify the RISC-V data width")
|
||||
cpu_group.add_argument("--scala-file", action="append", help="Specify the scala files used to configure NaxRiscv.")
|
||||
cpu_group.add_argument("--xlen", default=32, help="Specify the RISC-V data width.")
|
||||
|
||||
@staticmethod
|
||||
def args_read(args):
|
||||
|
|
Loading…
Reference in a new issue