1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-03-28 10:42:39 +00:00

flash-arty: Support Nexys Video's a200

Not an Arty but Anton tests on this board.

Signed-off-by: Joel Stanley <joel@jms.id.au>
This commit is contained in:
Joel Stanley
2020-06-09 10:12:42 +09:30
parent e46c46ab5f
commit 002858ddde
2 changed files with 3 additions and 1 deletions

Binary file not shown.

View File

@@ -23,7 +23,7 @@ def flash(config, flash_proxy, address, data, filetype="", set_qe=False):
parser = argparse.ArgumentParser()
parser.add_argument("file", help="file to write to flash")
parser.add_argument("-a", "--address", help="offset in flash", type=lambda x: int(x,0), default=0)
parser.add_argument("-f", "--fpga", help="a35 or a100", default="a35")
parser.add_argument("-f", "--fpga", help="a35, a100 or a200", default="a35")
parser.add_argument("-t", "--filetype", help="file type such as 'bin'", default="")
args = parser.parse_args()
@@ -31,6 +31,8 @@ if args.fpga.lower() == "a35":
proxy = "bscan_spi_xc7a35t.bit"
elif args.fpga.lower() == "a100":
proxy = "bscan_spi_xc7a100t.bit"
elif args.fpga.lower() == "a200":
proxy = "bscan_spi_xc7a200t.bit"
else:
print("error: specify a35 or a100 when flashing")
sys.exit()