diff options
| author | S.J.R. van Schaik <stephan@synkhronix.com> | 2021-06-07 13:17:23 -0400 |
|---|---|---|
| committer | whitequark <whitequark@whitequark.org> | 2021-06-07 17:23:27 +0000 |
| commit | 4aa9eeeb16f12a850e361673d4a7ce68829a3ba9 (patch) | |
| tree | b24075b0bba37a31e7909adfb33b718b41264742 /nmigen_boards/arrow_deca.py | |
| parent | 732406c8e133baf1739177c5ef809263e6b75f11 (diff) | |
arrow_deca: the assignments should be appended to what is originally in the QSF
Diffstat (limited to 'nmigen_boards/arrow_deca.py')
| -rw-r--r-- | nmigen_boards/arrow_deca.py | 6 |
1 files changed, 4 insertions, 2 deletions
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 - """ + """ } |
