blob: c65d8fc4dbab531415982511a9323b6a087fb06e (
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
|
// SPDX-License-Identifier: Apache-2.0
package chiselTests
import chisel3._
import chisel3.testers.BasicTester
class MultiIOPlusOne extends Module {
val in = IO(Input(UInt(32.W)))
val out = IO(Output(UInt(32.W)))
out := in + 1.asUInt
}
class MultiIOTester extends BasicTester {
val plusModule = Module(new MultiIOPlusOne)
plusModule.in := 42.U
assert(plusModule.out === 43.U)
stop()
}
// Demonstrate multiple IOs with inheritance where the IO is assigned to internally
trait LiteralOutputTrait extends Module {
val myLiteralIO = IO(Output(UInt(32.W)))
myLiteralIO := 2.U
}
// Demonstrate multiple IOs with inheritance where the IO is not assigned
// (and must be assigned by what extends this trait).
trait MultiIOTrait extends Module {
val myTraitIO = IO(Output(UInt(32.W)))
}
// Composition of the two above traits, example of IO composition directly using multiple top-level
// IOs rather than indirectly by constraining the type of the single .io field.
class ComposedMultiIOModule extends Module with LiteralOutputTrait with MultiIOTrait {
val topModuleIO = IO(Input(UInt(32.W)))
myTraitIO := topModuleIO
}
class ComposedMultiIOTester extends BasicTester {
val composedModule = Module(new ComposedMultiIOModule)
composedModule.topModuleIO := 42.U
assert(composedModule.myTraitIO === 42.U)
assert(composedModule.myLiteralIO === 2.U)
stop()
}
class MultiIOSpec extends ChiselFlatSpec {
"Multiple IOs in MultiIOModule" should "work" in {
assertTesterPasses({ new MultiIOTester })
}
"Composed MultiIO Modules" should "work" in {
assertTesterPasses({ new ComposedMultiIOTester })
}
}
|