diff options
| author | azidar | 2015-05-13 10:42:36 -0700 |
|---|---|---|
| committer | azidar | 2015-05-13 10:42:36 -0700 |
| commit | 2cf26ba655e59937f5a52aa50db2d97538d1fdde (patch) | |
| tree | d64a9843993a94978a1a671ac032a5b2f665b875 /test/passes/lower-to-ground | |
| parent | 791334cced721789fad180b6479cfa783963032f (diff) | |
Updated Spec. Added scoped-reg which exposes on-reset bug. Fixed lowering bug
Diffstat (limited to 'test/passes/lower-to-ground')
| -rw-r--r-- | test/passes/lower-to-ground/test.fir | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/passes/lower-to-ground/test.fir b/test/passes/lower-to-ground/test.fir new file mode 100644 index 00000000..fb951bff --- /dev/null +++ b/test/passes/lower-to-ground/test.fir @@ -0,0 +1,13 @@ +; RUN: firrtl -i %s -o %s.flo -x X -p cd | tee %s.out | FileCheck %s +; CHECK: Done! + +circuit Top : + module Queue : + output out : {valid : UInt<1>, flip ready : UInt<1>} + module Top : + output this : {out : {valid : UInt<1>, flip ready : UInt<1>}} + inst queue of Queue + this.out := queue.out + wire w : { x : UInt, flip y : UInt} + wire a : UInt + w.y := a |
