|
se if (A0 == B0) begin
T0=4\'b0000;
C1=4\'b0000;
end
else if (A0 < B0) begin
SUM=4\'b1011;
T0=A0 + SUM - B0;
C1=4\'b0001;
end
T1=A1-B1-C1;
C2=4\'b0000;
end
● Test result
뺄셈의 경우에 따라 각각의 if문으로 계산한다. 각각의 경우를 모두 고려하여 결과 값을 구한다.
● Compilation
|
- 페이지 4페이지
- 가격 1,000원
- 등록일 2009.06.12
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
register \"cnt[2]\" and destination register \"A[0]\"
Info: tsu for register \"A[4]~_Duplicate_1\" (data pin = \"DIP_D[12]\", clock pin = \"CLK\") is 5.408 ns
Info: tco from clock \"CLK\" to destination pin \"SEG_DATA[5]\" through register \"B[0]\" is 21.316 ns
Info: th for register \"B[1]~_Duplicat
|
- 페이지 4페이지
- 가격 1,000원
- 등록일 2009.06.12
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
between source register \"cnt[0]\" and destination register \"seg[0]\" (period= 7.7 ns)
Info: tsu for register \"seg[2]\" (data pin = \"SW_B\", clock pin = \"CLK\") is 7.819 ns
Info: tco from clock \"CLK\" to destination pin \"SEG_DATA[0]\" through register \"seg[1]\" is 17.234 ns
Info: th for regis
|
- 페이지 4페이지
- 가격 800원
- 등록일 2009.06.12
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
o: tco from clock \"CLK\" to destination pin \"SEG_DATA[5]\" through register \"cnt[0]\" is 18.944 ns
Info: th for register \"D_FF:D1|Qc[6]\" (data pin = \"DIP_D[6]\", clock pin = \"clk\") is -4.847 ns
● Discussion
처음에는 D flipflop을 4개 사용하여 코드를 작성하였다. SEG8-7, SEG6-5, SEG4-3, SEG2-1
|
- 페이지 4페이지
- 가격 1,000원
- 등록일 2009.06.12
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
b11111101 : //E의 위치를 나타냄
(cnt==3\'b010)? 8\'b11111011 : //L의 위치를 나타냄
(cnt==3\'b011)? 8\'b11110111 : //L의 위치를 나타냄
(cnt==3\'b100)? 8\'b11101111 : //O의 위치를 나타냄
(cnt==3\'b101)? 8\'b11111111 :
(cnt==3\'b110)? 8\'b11111111 :
(cnt==3\'b111)? 8\'b11111111 :
8\'b11111111)
|
- 페이지 4페이지
- 가격 1,000원
- 등록일 2009.06.12
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|