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
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
'Verilog HDL > 1. Verilog HDL Basic (문법)' 카테고리의 다른 글
[Verilog Operator] 2. 산술 연산자 (0) | 2024.01.04 |
---|---|
[Verilog Operator] 1. 비트 연산자 (0) | 2024.01.04 |
[Verilog Data Types and Arrays] 4. 예제 풀이 (1) | 2024.01.02 |
[Verilog Data Types and Arrays] 3. 배열 (1) | 2024.01.02 |
[Verilog Data Types and Arrays] 2. 기본 데이터 type (1) | 2024.01.02 |