Merge branch 'master' of github.com:m-labs/migen

This commit is contained in:
Sebastien Bourdeauducq 2015-09-19 12:22:47 +08:00
commit ef92aa35f2
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ class Pack(Module):
for f in description_to.param_layout:
src = getattr(self.sink, f[0])
dst = getattr(self.source, f[0])
self.comb += dst.eq(src)
self.sync += If(load_part, dst.eq(src))
if description_to.packetized:
demux_last = ((demux == (n - 1)) | sink.eop)