英偉達筆試題目ASIC

來源:瑞文範文網 2.02W

目前,在集成電路界ASIC被認爲是一種爲專門目的而設計的集成電路。是指應特定用戶要求和特定電子系統的需要而設計、製造的集成電路。下面就由本站小編爲大家介紹一下英偉達筆試題目-ASIC的文章,歡迎閱讀

英偉達筆試題目ASIC

英偉達筆試題目-ASIC篇1

1. 一段RTL代碼,最終的電路面積不一樣,請分析所有的可能。

2. If(a==1’b1)

$display(“breakpoint1”);

Else

$display(“breakpoint2”);

If(b===1’bz)

$display(“breakpoint3”);

Else

$display(“breakpoint4”);

如果a.b的輸入都爲X,請分析結果是什麼。

3. 分析主從端的req/ack信號的timing,給出了R_.W_信號,請畫出時序圖並分析。

英偉達筆試題目-ASIC篇2

4. 給出一個電路圖,分析有幾個pipe stages,分別的功能是什麼。分析從發送數據到接受數據需要幾級pipeline.修改電路減少pipeline但是pipe stages不變。

5. 給出5個人的薪水,其中有三個人的是一樣的,請用perl/tcl/c排列出薪水值由大到小,薪水一樣的按照姓名的ACSII大小值排列。

英偉達筆試題目-ASIC篇3

6. 將下列的C Code轉換爲RTL code.

mem[256] = {

0 6 5 5 4 4 4 4 3 3 3 3 3 3 3 3

2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2

1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

} intarith_c::bin(int bit, intprob) {

int left = 1 + (((high-1)*prob)>>8);

if (bit) {

low +=left;

high -=left;

} else {

high =left;

}

int shift = norm[high];

high <<=shift; count += shift;

return count;

}

RTL code

Module arith; input clk;

input reset;//negative async reset

input bit;

input [7:0] prob;

input [31:0] count;

Output [31:0] count_new; //this one is the 'return count' in C code reg [31:0] low;//reset to 0;

reg [7:0] high; //reset to 255;

//fill your RTL here;

//…

熱門標籤