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

19 lines
353 B
Python
Raw Normal View History

2003-05-12 16:57:17 +00:00
from __future__ import generators
from myhdl import Signal, intbv, posedge, negedge
from dff import dff
ACTIVE_LOW, INACTIVE_HIGH = 0, 1
def dff_clkout(clkout, q, d, clk, reset):
DFF_1 = dff(q, d, clkout, reset)
def assign():
while 1:
yield clk
clkout.next = clk
return DFF_1, assign()