kc705: use string default arg
This commit is contained in:
parent
be0d86f57f
commit
26717a49fe
|
@ -81,10 +81,7 @@ _io = [
|
|||
IOStandard("LVCMOS25")),
|
||||
]
|
||||
|
||||
def Platform(*args, toolchain=None, **kwargs):
|
||||
if toolchain is None:
|
||||
toolchain = "ise"
|
||||
|
||||
def Platform(*args, toolchain="ise", **kwargs):
|
||||
if toolchain == "ise":
|
||||
xilinx_platform = XilinxISEPlatform
|
||||
elif toolchain == "vivado":
|
||||
|
|
Loading…
Reference in New Issue