aboutsummaryrefslogtreecommitdiff
path: root/test/simple.fir
diff options
context:
space:
mode:
authorjackbackrack2015-04-20 15:21:30 -0700
committerjackbackrack2015-04-20 15:21:30 -0700
commit6204b6d44aef2f47a8009ad06dfd4e09ce7ce950 (patch)
tree8795de870f20086b0615f7c402c234b79e6a71a0 /test/simple.fir
parent5298af3dffcd0985922a2a8317fa6a67e192a9c0 (diff)
parent7617e33993abf9f6be357e0261755a4736c2e085 (diff)
merge
Diffstat (limited to 'test/simple.fir')
-rw-r--r--test/simple.fir11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/simple.fir b/test/simple.fir
deleted file mode 100644
index d00f8f7a..00000000
--- a/test/simple.fir
+++ /dev/null
@@ -1,11 +0,0 @@
-; RUN: firrtl %s ab | tee %s.out | FileCheck %s
-
-circuit top :
- module subtracter :
- input x : UInt
- input y : UInt
- output z : UInt
- z := sub-mod(x, y)
-; CHECK: output z : UInt
-; CHECK: port:z := sub-mod(port:x, port:y)
-