sv基础-数据类型(二)

结构体

sv 中的struct 想比c c++ 中功能要少,仅支持基本使用方法,指针等都没有。

声明新的结构体类型

tpyedef struct {bit [7:0] a,b} test;//声明结构体类型test
test test_1;//声明一个结构体

结构体赋值

test_1 = '{'h1,'h2}//结构体赋值

枚举类型

声明方法

typedef enum{A,B} test;
test test_1;
case(test_1)
A:
$display(" 1 ");
B:
$display(“2”);
default:
$display(“default”);
endcase

字符串

sv 中新增一个重要的数据类型

声明方法

a = “Test”;

操作方法

a.getc(0) //cell 0 ,也就是”T“
a.tolower() //转小写 ”test“
a.len //cell 长度 4

你可能感兴趣的:(system,verilog)