Replies: 1 comment
-
There isn't a way to define this based on a prior instance's size, but you can control address allocation alignment in two different ways: Alignment propertyThe
Alignment operatorAlternatively, you can specify the desired alignment of the instance individually, without specifying the address, using the alignment operator
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I wish for an addrmap to have it's size rounded to the next power of 2 when it comes to calculating the next component address. For example:
Here I have a 1500 bytes
submap_0
and a 400 bytessubmap_1
that are placed, respectively at 0 and 1536. I would rather havesubmap_1
at 2048, which issubmap_0
size's next power of 2.Is there a way to accomplish this automatically with SystemRDL?
Beta Was this translation helpful? Give feedback.
All reactions