diff options
Diffstat (limited to 'test/unit/simple.fir')
| -rw-r--r-- | test/unit/simple.fir | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/unit/simple.fir b/test/unit/simple.fir new file mode 100644 index 00000000..01389604 --- /dev/null +++ b/test/unit/simple.fir @@ -0,0 +1,11 @@ +; RUN: firrtl %s | 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) + |
