diff options
Diffstat (limited to 'tests/arch/anlogic/tribuf.v')
-rw-r--r-- | tests/arch/anlogic/tribuf.v | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/arch/anlogic/tribuf.v b/tests/arch/anlogic/tribuf.v deleted file mode 100644 index 90dd314e4..000000000 --- a/tests/arch/anlogic/tribuf.v +++ /dev/null @@ -1,8 +0,0 @@ -module tristate (en, i, o); - input en; - input i; - output o; - - assign o = en ? i : 1'bz; - -endmodule |