blob: 721f47270730e7ed5ebc4747665b1849c34e00a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
; RUN: firrtl -i %s -m /Users/cusgadmin/code/stanza/firrtl/test/features/Queue.fir -o %s.v -X verilog -p c 2>&1 | tee %s.out | FileCheck %s
;CHECK: Lower To Ground
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
|