Skip to content

Commit

Permalink
cpu/vexriscv/cpu-count: fix type and add comment (thanks dayjaby).
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Jan 4, 2021
1 parent f31f9a2 commit 16008d3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions litex/soc/cores/cpu/vexriscv_smp/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@
import os
from os import path

from litex import get_data_mod
from migen import *

from litex import get_data_mod

from litex.soc.interconnect import wishbone
from litex.soc.interconnect.csr import *
from litex.soc.cores.cpu import CPU, CPU_GCC_TRIPLE_RISCV32
Expand Down Expand Up @@ -49,7 +50,7 @@ class VexRiscvSMP(CPU):

@staticmethod
def args_fill(parser):
parser.add_argument("--cpu-count", default=1, help="")
parser.add_argument("--cpu-count", default=1, help="Number of CPU(s) in the cluster.", type=int)
parser.add_argument("--with-coherent-dma", action='store_true', help="Enable Coherent DMA Slave interface.")
parser.add_argument("--without-coherent-dma", action='store_true', help="Disable Coherent DMA Slave interface.")
parser.add_argument("--dcache-width", default=None, help="L1 data cache bus width.")
Expand Down

0 comments on commit 16008d3

Please sign in to comment.