728x90
반응형
1. implicit 과 explicit 연속 할당의 차이점?
더보기
When we use implicit continuous assignment we assign the variable a value when we declare. When we use explicit continuous assignment we use the assign keyword to assign a value.
728x90
2. 2 to 1 mux 코드를 짜시오. (방법 상관 x)
더보기
// assign
assign mux_out = addr ? b : a;
// array
wire in_arr [1:0] = { a, b };
assign mux_out = in_arr[addr];
반응형
3. 아래 회로를 implicit 과 explicit으로 코딩
더보기
// explicit
wire logic_out;
assign logic_out = ( a | b ) & c;
// implicit
wire logic_out = ( a | b ) & c;
728x90
반응형
'Verilog HDL > 1. Verilog HDL Basic (문법)' 카테고리의 다른 글
[Using the Always Block] 1. Always block 이란? (1) | 2024.01.10 |
---|---|
[Verilog Tutorial] level-4 Using Continuous Assignment 모음 (0) | 2024.01.10 |
[Using Continuous Assignment] 2. Combinational Logic Circuits (0) | 2024.01.10 |
[Using Continuous Assignment] 1. 연속 할당 in 베릴로그 (0) | 2024.01.10 |
[Verilog Tutorial] level-3 Verilog Operators 모음 (1) | 2024.01.04 |