From 4aa9eeeb16f12a850e361673d4a7ce68829a3ba9 Mon Sep 17 00:00:00 2001 From: "S.J.R. van Schaik" Date: Mon, 7 Jun 2021 13:17:23 -0400 Subject: arrow_deca: the assignments should be appended to what is originally in the QSF --- nmigen_boards/arrow_deca.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'nmigen_boards/arrow_deca.py') diff --git a/nmigen_boards/arrow_deca.py b/nmigen_boards/arrow_deca.py index 53fff8c..b364bc8 100644 --- a/nmigen_boards/arrow_deca.py +++ b/nmigen_boards/arrow_deca.py @@ -62,7 +62,9 @@ class ArrowDECAPlatform(IntelPlatform): # file templates before modifying them to avoid modifying the original. return { **super().file_templates, - "{{name}}.qsf": r""" + "{{name}}.qsf": + super().file_templates.get("{{name}}.qsf") + + r""" set_global_assignment -name IOBANK_VCCIO 2.5V -section_id 1A set_global_assignment -name IOBANK_VCCIO 2.5V -section_id 1B set_global_assignment -name IOBANK_VCCIO 2.5V -section_id 2 @@ -77,7 +79,7 @@ class ArrowDECAPlatform(IntelPlatform): set_global_assignment -name AUTO_RESTART_CONFIGURATION OFF set_global_assignment -name ENABLE_CONFIGURATION_PINS OFF set_global_assignment -name ENABLE_BOOT_SEL_PIN OFF - """ + """ } -- cgit v1.2.3