blob: 26953f5faa5dac1704c1f54f84c258467d7766ce (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
// See LICENSE for license details.
package chiselTests
import chisel3._
class SimpleIO extends Bundle {
val in = Input(UInt.width(32))
val out = Output(UInt.width(32))
}
class PlusOne extends Module {
val io = IO(new SimpleIO)
io.out := io.in + 1.asUInt
}
class ModuleVec(val n: Int) extends Module {
val io = IO(new Bundle {
val ins = Input(Vec(n, UInt.Lit(32)))
val outs = Output(Vec(n, UInt.Lit(32)))
})
val pluses = Vec.fill(n){ Module(new PlusOne).io }
for (i <- 0 until n) {
pluses(i).in := io.ins(i)
io.outs(i) := pluses(i).out
}
}
/*
class ModuleVecTester(c: ModuleVec) extends Tester(c) {
for (t <- 0 until 16) {
val test_ins = Array.fill(c.n){ rnd.nextInt(256) }
for (i <- 0 until c.n)
poke(c.io.ins(i), test_ins(i))
step(1)
for (i <- 0 until c.n)
expect(c.io.outs(i), test_ins(i) + 1)
}
}
*/
class ModuleWire extends Module {
val io = IO(new SimpleIO)
val inc = Wire(Module(new PlusOne).io.chiselCloneType)
inc.in := io.in
io.out := inc.out
}
/*
class ModuleWireTester(c: ModuleWire) extends Tester(c) {
for (t <- 0 until 16) {
val test_in = rnd.nextInt(256)
poke(c.io.in, test_in)
step(1)
expect(c.io.out, test_in + 1)
}
}
*/
class ModuleWhen extends Module {
val io = IO(new Bundle {
val s = new SimpleIO
val en = Bool()
})
when(io.en) {
val inc = Module(new PlusOne).io
inc.in := io.s.in
io.s.out := inc.out
} otherwise { io.s.out := io.s.in }
}
class ModuleSpec extends ChiselPropSpec {
property("ModuleVec should elaborate") {
elaborate { new ModuleVec(2) }
}
ignore("ModuleVecTester should return the correct result") { }
property("ModuleWire should elaborate") {
elaborate { new ModuleWire }
}
ignore("ModuleWireTester should return the correct result") { }
property("ModuleWhen should elaborate") {
elaborate { new ModuleWhen }
}
ignore("ModuleWhenTester should return the correct result") { }
}
|