aboutsummaryrefslogtreecommitdiff
path: root/test/passes/resolve-genders/subbundle.fir
blob: 9df4b058975371401fe35cbc72e9561c11ea82f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: firrtl -i %s -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>
      wire w : { flip x : UInt<10>}
      reg r : { flip x : UInt<10>},clk,reset
      w := r     ; CHECK r$x := w$x
      w.x := r.x ; CHECK w$x := r$x
; CHECK: Finished Lower To Ground