Skip to content

Commit

Permalink
Merge pull request #2162 from trabucayre/altera_max10_fullmemorywe
Browse files Browse the repository at this point in the history
build/altera/quartus.py: don't call FullMemoryWE when target is based on max10 FPGA
  • Loading branch information
enjoy-digital authored Jan 16, 2025
2 parents 08a6da2 + 08a8b66 commit e9e7cd9
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 e9e7cd9

Please sign in to comment.