blob: 2947eb8f2b0a322b854524431e3b8de2cc073c14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
; RUN: firrtl %s abcdefgh c | tee %s.out | FileCheck %s
circuit top :
module m :
input a : { x : UInt, flip y: SInt}
output b : { x : UInt, flip y: SInt}
module subtracter :
input c : { x : UInt[5], flip y : { x : UInt[3], flip y : SInt } }
wire a : { x : UInt, flip y : SInt}
wire b : { x : UInt, flip y : SInt}
a := b
inst i of m
i.a := a
b := i.b
wire d : UInt[5]
;CHECK: Lower To Ground
;CHECK: circuit top :
;CHECK: module m :
;CHECK: input a$x : UInt
;CHECK: output a$y : SInt
;CHECK: output b$x : UInt
;CHECK: input b$y : SInt
;CHECK: input reset : UInt(1)
;CHECK: module subtracter :
;CHECK: input c$x$0 : UInt
;CHECK: input c$x$1 : UInt
;CHECK: input c$x$2 : UInt
;CHECK: input c$x$3 : UInt
;CHECK: input c$x$4 : UInt
;CHECK: output c$y$x$0 : UInt
;CHECK: output c$y$x$1 : UInt
;CHECK: output c$y$x$2 : UInt
;CHECK: input c$y$y : SInt
;CHECK: input reset : UInt(1)
;CHECK: wire a$x : UInt
;CHECK: wire a$y : SInt
;CHECK: wire b$x : UInt
;CHECK: wire b$y : SInt
;CHECK: a$x := b$x
;CHECK: b$y := a$y
;CHECK: inst i of m
;CHECK: i.reset := reset
;CHECK: i.a$x := a$x
;CHECK: a$y := i.a$y
;CHECK: b$x := i.b$x
;CHECK: i.b$y := b$y
;CHECK: wire d$0 : UInt
;CHECK: wire d$1 : UInt
;CHECK: wire d$2 : UInt
;CHECK: wire d$3 : UInt
;CHECK: wire d$4 : UInt
;CHECK: Finished Lower To Ground
|