Skip to content

SdNssr/pyhdl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyHDL

Travis CI codecov.io Join the chat at https://gitter.im/SdNssr/pyhdl

PyPI version PyPI License

A simple HDL written in Python.

from pyhdl import Wire, NandGate
a, b, out = Wire(), Wire(), Wire()
gate = NandGate(a=a, b=b, out=out)

a.val, b.val = '1', '1'
gate.eval()
print out.val # 0

You can read the docs at http://pyhdl.sdnssr.me.

About

A simple HDL written in Python.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages