Skip to content

Commit

Permalink
Move Token
Browse files Browse the repository at this point in the history
Sebastien Bourdeauducq committed Dec 14, 2012
1 parent 3986790 commit c44ff89
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion milkymist/framebuffer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from migen.fhdl.structure import *
from migen.flow.actor import *
from migen.flow.network import *
from migen.flow.transactions import *
from migen.flow import plumbing
from migen.actorlib import misc, dma_asmi, structuring, sim, spi
from migen.bank.description import *
@@ -158,7 +159,7 @@ def get_fragment(self):

def sim_fifo_gen():
while True:
t = sim.Token("dac")
t = Token("dac")
yield t
print("H/V:" + str(t.value["hsync"]) + str(t.value["vsync"])
+ " " + str(t.value["r"]) + " " + str(t.value["g"]) + " " + str(t.value["b"]))

0 comments on commit c44ff89

Please sign in to comment.