728x90 반응형 분류 전체보기129 Microsoft Training 시스템 이용하기 (4) 2023.11.13 - [Python/Basic] - Microsoft Training 시스템 이용하기 (1) 2023.11.13 - [Python/Basic] - Microsoft Training 시스템 이용하기 (2) 2023.11.14 - [Python/Basic] - Microsoft Training 시스템 이용하기 (3) https://learn.microsoft.com/api/achievements/share/ko-kr/07599371/WA45MB6N?sharingId=7F48E7B9D18A9AE3 Python용 Jupyter Notebook 시작 learn.microsoft.com .ipynb 파일을 다루는건 좋다고 생각한다. 문제는 이 다음인데, https://learn.microsoft... 2024. 1. 4. [Verilog Tutorial] Level-2 Verilog Data Types and Arrays 모음 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 Dat.. 2024. 1. 2. [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 connections in our design and can’t store values. Variable types can store data values and behave like variables in other programming languages. point to point 연결의 가장 일반적인 type은?.. 2024. 1. 2. [Verilog Data Types and Arrays] 3. 배열 array types 생성, 사용 가능 memories 모델링에 특별히 유용 array 선언 변수 이름 뒤에 array 요소를 선언하면 됨. 이 선언은 [[2-2. Basic Data Types in Verilog|벡터 크기 필드]]와 동일한 형식을 취함.// array type 선언 일반 구문 ; 3 bit reg type의 array 만들기 (배열 요소 : 8개)reg [2:0] example [7:0]; [] 를 사용하여 배열의 개별 요소에 access 가능 example 배열의 마지막 요소에 5h 값 할당example[7] = 3'h5; EDA playground Example을 통해 simulate 할 수 있음. Multi Dimensional Arrays (다차원 배열) 1995 표준에.. 2024. 1. 2. 이전 1 ··· 22 23 24 25 26 27 28 ··· 33 다음 728x90 반응형