본문 바로가기
HW Design/1. Verilog HDL Basic

[Verilog Tutorial] Level-2 Verilog Data Types and Arrays 모음

by 한PU 2024. 1. 2.
728x90
반응형

Verilog Data Types and Arrays

1. Data 표현

2024.01.02 - [Verilog/Basic] - [Verilog Data Types and Arrays] 1. Data 표현

 

[Verilog Data Types and Arrays] 1. Data 표현

Verilog 를 쓸 때, digital data 값을 code로 표현해야 함. binary (2진수) hexadecimal (16진수) octal (8진수) 등. 데이터 표현에 있는 비트 수 또한 정의해야 함. 베릴로그 == HW circuits을 describe 하기 때문. 원하는

han-pu.tistory.com

728x90

 

2. 기본적인 데이터 Types

2024.01.02 - [Verilog/Basic] - [Verilog Data Types and Arrays] 2. 기본 데이터 type

 

[Verilog Data Types and Arrays] 2. 기본 데이터 type

net types & variable types net types 디지털 회로의 연결을 모델링. 값 저장 x must be driven with data variable types registers or flip flops 모델링 값 저장 o C 언어 등의 ==변수== 와 같다. data table data 설명 0 2진수 0 1 2

han-pu.tistory.com

반응형

3. 배열

2024.01.02 - [Verilog/Basic] - [Verilog Data Types and Arrays] 3. 배열

 

[Verilog Data Types and Arrays] 3. 배열

array types 생성, 사용 가능 memories 모델링에 특별히 유용 array 선언 변수 이름 뒤에 array 요소를 선언하면 됨. 이 선언은 [[2-2. Basic Data Types in Verilog|벡터 크기 필드]]와 동일한 형식을 취함.// array type

han-pu.tistory.com

 

4. 예제 풀이

2024.01.02 - [Verilog/Basic] - [Verilog Data Types and Arrays] 4. 예제 풀이

 

[Verilog Data Types and Arrays] 4. 예제 풀이

data representation 의 types는? 더보기 - Binary, - Hexidecimal - octal - decimal - decimal numbers - can represnet but not synthesizable 2가지 메인 data types는? 그 차이는? 더보기 - Net type - Variable type - Net types are used to model co

han-pu.tistory.com

 

728x90
반응형