digilent_pynq_z1: Do minor cosmetic cleanups.
This commit is contained in:
parent
45cfe2be6b
commit
296c99f065
|
@ -73,8 +73,7 @@ _io = [
|
|||
("ck_sda", 0, Pins("P15"), IOStandard("LVCMOS33")),
|
||||
|
||||
# Crypto SDA
|
||||
("crypto_sda", 0, Pins("J15"), IOStandard("LVCMOS33"))
|
||||
|
||||
("crypto_sda", 0, Pins("J15"), IOStandard("LVCMOS33")),
|
||||
]
|
||||
|
||||
_ps7_io = [
|
||||
|
|
|
@ -104,10 +104,10 @@ class BaseSoC(SoCCore):
|
|||
|
||||
def main():
|
||||
parser = argparse.ArgumentParser(description="LiteX SoC on PYNQ Z1")
|
||||
parser.add_argument("--build", action="store_true", help="Build bitstream")
|
||||
parser.add_argument("--load", action="store_true", help="Load bitstream")
|
||||
parser.add_argument("--sys-clk-freq", default=125e6, help="System clock frequency (default: 125MHz)")
|
||||
parser.add_argument("--with-video-terminal", action="store_true", help="Enable Video Terminal (HDMI)")
|
||||
parser.add_argument("--build", action="store_true", help="Build bitstream.")
|
||||
parser.add_argument("--load", action="store_true", help="Load bitstream.")
|
||||
parser.add_argument("--sys-clk-freq", default=125e6, help="System clock frequency.")
|
||||
parser.add_argument("--with-video-terminal", action="store_true", help="Enable Video Terminal (HDMI).")
|
||||
|
||||
builder_args(parser)
|
||||
soc_core_args(parser)
|
||||
|
|
Loading…
Reference in New Issue