17 lines
313 B
Systemverilog
17 lines
313 B
Systemverilog
|
`default_nettype none
|
||
|
package common;
|
||
|
|
||
|
class Color;
|
||
|
bit [7:0] red;
|
||
|
bit [7:0] green;
|
||
|
bit [7:0] blue;
|
||
|
|
||
|
function new(bit [7:0] red, bit [7:0] green, bit [7:0] blue);
|
||
|
this.red = red;
|
||
|
this.green = green;
|
||
|
this.blue = blue;
|
||
|
endfunction //new()
|
||
|
endclass //Color
|
||
|
|
||
|
endpackage
|