blob: 57fb86057bf43cdd05326af162b3edecd23a05a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
; 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
|