-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrtl_model.sv
57 lines (46 loc) · 2.21 KB
/
rtl_model.sv
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
/*
Write a markdown documentation for this systemverilog module:
Author : name (email)
This file is part of squared-studio:sv-genesis
Copyright (c) 2025 squared-studio
Licensed under the MIT License
See LICENSE file in the project root for full license information
*/
module rtl_model #(
//-PARAMETERS
//-LOCALPARAMS
) (
//-PORTS
);
//////////////////////////////////////////////////////////////////////////////////////////////////
//-LOCALPARAMS GENERATED
//////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////
//-TYPEDEFS
//////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////
//-SIGNALS
//////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////
//-ASSIGNMENTS
//////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////
//-RTLS
//////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////
//-METHODS
//////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////
//-SEQUENTIALS
//////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////
//-INITIAL CHECKS
//////////////////////////////////////////////////////////////////////////////////////////////////
`ifdef SIMULATION
initial begin
if (DATA_WIDTH > 2) begin
$display("\033[1;33m%m DATA_WIDTH\033[0m");
end
end
`endif // SIMULATION
endmodule