projects
/
litex.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
680a344
)
flow: fix actor repr
author
Sebastien Bourdeauducq
<sebastien@milkymist.org>
Thu, 7 Jun 2012 13:48:35 +0000
(15:48 +0200)
committer
Sebastien Bourdeauducq
<sebastien@milkymist.org>
Thu, 7 Jun 2012 13:48:35 +0000
(15:48 +0200)
migen/flow/actor.py
patch
|
blob
|
history
diff --git
a/migen/flow/actor.py
b/migen/flow/actor.py
index 7d70ba1fc749001671d0940234c2c473d6b4d59d..f2f6bf0ecdc314b6991547f8be6760b03dff7c31 100644
(file)
--- a/
migen/flow/actor.py
+++ b/
migen/flow/actor.py
@@
-70,7
+70,7
@@
class Actor:
return self.get_control_fragment() + self.get_process_fragment()
def __repr__(self):
- return "<" + self.__class__.__name__ + " " + repr(self.s
cheduling_model) + " " + repr(self.s
inks()) + " " + repr(self.sources()) + ">"
+ return "<" + self.__class__.__name__ + " " + repr(self.sinks()) + " " + repr(self.sources()) + ">"
class BinaryActor(Actor):
def get_binary_control_fragment(self, stb_i, ack_o, stb_o, ack_i):