aboutsummaryrefslogtreecommitdiff
path: root/test/features/Link.fir
blob: 040ac2c538be400fcec94f7e9b62a8bf1f08a4c9 (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: 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