Techo1月 61 分鐘[IC design] Advanced IC design interview question - 2There is a RTL code generator tool for generating custom defined instructions, we can define instructions for specific function for user'...
Techo2020年9月15日1 分鐘[IC驗證] Using countones to constraint 2'b01 in 20bits data on Systemverilog class Pattern; rand bit[19:0] data; constraint c { $countones(data[19:1]&(~data[18:0])) == 5; } function show(); $display("%b",data); end...
Techo2020年9月13日1 分鐘[IC驗證] Memory block randomization constraint1. Try to allocate the 4KB SRAM into 5 partitions with each partition having equal size Ans: class Allocate_mem; rand bit[12:0] start_add...
Techo2020年8月31日1 分鐘[IC design] Google interview design verification, Systemverilog constraint and memory read part two