Skip to content

Commit

Permalink
build/altera/quartus.py: don't call FullMemoryWE when target is based…
Browse files Browse the repository at this point in the history
… on max10 FPGA
  • Loading branch information
trabucayre committed Jan 16, 2025
1 parent 08a6da2 commit 08a8b66
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions litex/build/altera/quartus.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ def build(self, platform, fragment,

self._synth_tool = synth_tool

# Apply FullMemoryWE on Design (Quartus does not infer memories correctly otherwise).
FullMemoryWE()(fragment)
if not platform.device.startswith("10M"):
# Apply FullMemoryWE on Design (Quartus does not infer memories correctly otherwise).
FullMemoryWE()(fragment)

return GenericToolchain.build(self, platform, fragment, **kwargs)

Expand Down

0 comments on commit 08a8b66

Please sign in to comment.