Remove examples/tbuf.py.

This example predates the plans for nmigen.build, and indeed
get_tristate and TSTriple no longer exist.
This commit is contained in:
whitequark 2019-04-21 08:53:37 +00:00
parent 44711b7d08
commit aed2062101

View file

@ -1,12 +0,0 @@
from nmigen import *
from nmigen.cli import main
pin = Signal()
pin_t = TSTriple()
m = Module()
m.submodules += pin_t.get_tristate(pin)
if __name__ == "__main__":
main(m, ports=[pin, pin_t.oe, pin_t.i, pin_t.o])