We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 732406c commit 4aa9eeeCopy full SHA for 4aa9eee
nmigen_boards/arrow_deca.py
@@ -62,7 +62,9 @@ def file_templates(self):
62
# file templates before modifying them to avoid modifying the original.
63
return {
64
**super().file_templates,
65
- "{{name}}.qsf": r"""
+ "{{name}}.qsf":
66
+ super().file_templates.get("{{name}}.qsf") +
67
+ r"""
68
set_global_assignment -name IOBANK_VCCIO 2.5V -section_id 1A
69
set_global_assignment -name IOBANK_VCCIO 2.5V -section_id 1B
70
set_global_assignment -name IOBANK_VCCIO 2.5V -section_id 2
@@ -77,7 +79,7 @@ def file_templates(self):
77
79
set_global_assignment -name AUTO_RESTART_CONFIGURATION OFF
78
80
set_global_assignment -name ENABLE_CONFIGURATION_PINS OFF
81
set_global_assignment -name ENABLE_BOOT_SEL_PIN OFF
- """
82
+ """
83
}
84
85
0 commit comments