PyHCL/example/ClockDomin.py

13 lines
215 B
Python
Raw Permalink Normal View History

2023-01-08 12:09:24 +08:00
# Copyright (c) 2019 scutdig
# Licensed under the MIT license.
2021-11-29 22:47:14 +08:00
from pyhcl import *
class A(Module):
io=IO(
i=input(Bool),
o=output(Bool),
en=input(Bool),
)
r0 = RegInit(U.w(1))