1
0
mirror of https://github.com/myhdl/myhdl.git synced 2025-01-24 21:52:56 +08:00
myhdl/example/manual/Hello.py

12 lines
187 B
Python
Raw Normal View History

2016-03-21 16:31:42 +01:00
from myhdl import block, always, now
@block
def Hello(clk, to="World!"):
@always(clk.posedge)
def say_hello():
2016-05-11 12:08:15 +02:00
print("%s Hello %s" % (now(), to))
2016-03-21 16:31:42 +01:00
return say_hello