-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStudentFilterImpl.scala
34 lines (32 loc) · 2.08 KB
/
StudentFilterImpl.scala
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
package example
import nl.tudelft.tydi_chisel._
import chisel3._
/**
* Implementation, defined in example.
*/
class StudentFilterImpl extends StudentFilterInterface {
// Fixme: Remove the following line if this impl. contains logic. If it just interconnects, remove this comment.
input_int_parser_L4_00_instStream := DontCare
// Fixme: Remove the following line if this impl. contains logic. If it just interconnects, remove this comment.
input_key_parser_L2_04_instStream := DontCare
// Fixme: Remove the following line if this impl. contains logic. If it just interconnects, remove this comment.
input_string_parser_L1_00_instStream := DontCare
// Fixme: Remove the following line if this impl. contains logic. If it just interconnects, remove this comment.
input_string_parser_L1_01_instStream := DontCare
// Fixme: Remove the following line if this impl. contains logic. If it just interconnects, remove this comment.
input_string_parser_L1_02_instStream := DontCare
// Fixme: Remove the following line if this impl. contains logic. If it just interconnects, remove this comment.
input_string_parser_L1_03_instStream := DontCare
// Fixme: Remove the following line if this impl. contains logic. If it just interconnects, remove this comment.
input_string_parser_L1_04_instStream := DontCare
// Fixme: Remove the following line if this impl. contains logic. If it just interconnects, remove this comment.
input_string_parser_L1_05_instStream := DontCare
// Fixme: Remove the following line if this impl. contains logic. If it just interconnects, remove this comment.
input_string_parser_L3_00_instStream := DontCare
// Fixme: Remove the following line if this impl. contains logic. If it just interconnects, remove this comment.
input_string_parser_L3_01_instStream := DontCare
// Fixme: Remove the following line if this impl. contains logic. If it just interconnects, remove this comment.
input_string_parser_L3_02_instStream := DontCare
// Fixme: Remove the following line if this impl. contains logic. If it just interconnects, remove this comment.
outputStream := DontCare
}