Skip to content

Commit

Permalink
Merge pull request #33 from sifive/scrub-64kb-limit
Browse files Browse the repository at this point in the history
Update comment for 64KB limit in lds
  • Loading branch information
bsousi5 authored May 19, 2020
2 parents f997ce9 + 98844ae commit eb2aee7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/base.lds
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ SECTIONS

/* The RAM memories map for ECC scrubbing */
{% for memory in ram_memories %}
{% if 'memory' in memory["name"]: %}
/* Default memory to zero-scrub for at most 64KB, for limiting RTL simulation run time. */
{% if '0x10000' in memory["length_hex"]: %}
/* Default zero-scrub to at most 64KB, for limiting RTL simulation run time. */
/* User is recommended to enable the full size for manual RTL simulation run! */
{% endif %}
PROVIDE( metal_{{ memory.name }}_memory_start = {{ memory.base_hex }} );
Expand Down

0 comments on commit eb2aee7

Please sign in to comment.