aboutsummaryrefslogtreecommitdiff
path: root/test/features/Link.fir
diff options
context:
space:
mode:
Diffstat (limited to 'test/features/Link.fir')
-rw-r--r--test/features/Link.fir14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/features/Link.fir b/test/features/Link.fir
deleted file mode 100644
index 57fb8605..00000000
--- a/test/features/Link.fir
+++ /dev/null
@@ -1,14 +0,0 @@
-; RUN: firrtl -i %s -m %S/Queue.fir -o %s.v -X verilog -p c 2>&1 | tee %s.out | FileCheck %s
-;CHECK: Done!
-circuit Top :
- module Top :
- input clk : Clock
- input reset : UInt<1>
- output out : UInt<10>
-
- inst q of Queue
- q.clk <= clk
- q.reset <= reset
- q.in <= UInt(1)
- out <= q.out
-