Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tilk committed Mar 13, 2024
1 parent 1cc7464 commit 8ae0454
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coreblocks/lsu/pma.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@ def elaborate(self, platform) -> HasElaborate:
m.d.comb += outputs[i].eq(segment.mmio)

# OR all outputs
m.d.comb += self.result.eq(reduce(or_, outputs, 0))
m.d.comb += self.result.eq(reduce(or_, [Value.cast(o) for o in outputs], 0))

return m

0 comments on commit 8ae0454

Please sign in to comment.