SV中从文件读取数据到数组中怎么操作?
时间:10-02
整理:3721RD
点击:
文件tmp.log内容为1234567887654321数组int a[2]
放入结果要为a[0]=32’h12345678a[1]=32‘h87654321
放入结果要为a[0]=32’h12345678a[1]=32‘h87654321
伪代码:
$readmemh ( tmp.log, A) ;
a[0] = A/(2^32);
a[1] = A%(2^32);