We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
In order to add PS8 instance (for ZynqMP devices) to nMigen project, i need to add the following constraint:
set_property DONT_TOUCH true [get_cells "ps/PS8_i"]
The only way i found was:
core = Test() plat = MyPlatform() constraints = ''' set_property DONT_TOUCH true [get_cells "ps/PS8_i"] ''' plat.build(core, add_constraints=constraints)
Is there any other way to do this? How can i add a constraint/attribute to a module in the elaborate method?
elaborate
The text was updated successfully, but these errors were encountered:
Do you actually want to add the attribute to an instance? In that case try Instance("PS8", a_DONT_TOUCH="true", ...).
Instance("PS8", a_DONT_TOUCH="true", ...)
Sorry, something went wrong.
Works like a charm. Thanks you!
No branches or pull requests
Hi,
In order to add PS8 instance (for ZynqMP devices) to nMigen project, i need to add the following constraint:
The only way i found was:
Is there any other way to do this? How can i add a constraint/attribute to a module in the
elaborate
method?The text was updated successfully, but these errors were encountered: