mirror of
https://github.com/myhdl/myhdl.git
synced 2024-12-14 07:44:38 +08:00
19 lines
353 B
Python
19 lines
353 B
Python
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()
|
|
|