From: Florent Kermarrec Date: Mon, 22 Sep 2014 16:09:30 +0000 (+0200) Subject: flow/actor: fix eop direction X-Git-Tag: 24jan2021_ls180~2099^2~289 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a03570ccca89f40d53288ffcb9fe8d180e6d85f0;p=litex.git flow/actor: fix eop direction --- diff --git a/migen/flow/actor.py b/migen/flow/actor.py index 8968b533..d8093724 100644 --- a/migen/flow/actor.py +++ b/migen/flow/actor.py @@ -22,7 +22,7 @@ class _Endpoint(Record): if packetized: endpoint_layout += [ ("sop", 1, DIR_M_TO_S), - ("eop", 1, DIR_S_TO_M) + ("eop", 1, DIR_M_TO_S) ] Record.__init__(self, endpoint_layout)