일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- boj
- 백준
- SQL
- 정보처리기사
- verilog HDL
- HDLBits
- Backjoon
- 실기
- 자격증
- FPGA
- hdl
- C++
- UNIX
- amba
- linux
- 코딩테스트
- AMBA BUS
- 리눅스
- Beakjoon
- verilog
- java
- Vivado
- chip2chip
- Bus
- vitis
- Zynq
- axi
- Xilinx
- baekjoon
- 정처기
- Today
- Total
목록전체 글 (123)
Hueestory

Vitis C Code #include #include "xgpio.h" #include "xgpiops.h" #include "platform.h" int main() { static XGpio GPIOInstance_Ptr; static XGpioPs psGpioInstancePtr; XGpioPs_Config *GpioConfigPtr; u8 count = 0; int xStatus; int BtnPinDirection1 = 0, BtnPinNumber1 = 50; int Readstatus = 0, OldReadstatus = 0; init_platform(); // Step 01 : AXI GPIO Initialization // xStatus = XGpio_Initialize(&GPIOInst..
- 여러 Block들이 상호 Data를 전송하기 위해 이들을 전기적으로 연결한 공유 신호선 장점- 인터페이스의 간소화 : IP Block들을 wire로 point-to-point 방식으로 잇게 되면 선이 많고 복잡함 - 확장성 : IP Block을 추가할 때 Bus에만 연결하면 됨 - APB, AHP, AXI : Performance를 위해 Bus 분리 - 빠른 동작이 필요 없는 것들은 APB와 같은 저속 Bus에 연결 - 빠른 동작이 필요한 것들은 AHB와 같은 고속 Bus에 연결 - 전력 소비를 최소화하고 인터페이스의 복잡성을 줄이기 위해 최적화된 저가형 인터페이스 - 고성능을 요구하지 않는 주변 장치를 위한 Bus - 인터페이스의 간소화, 확장성- APB Process1. Master는 여러 S..

Vitis C Code #include #include "xgpiops.h" #include "platform.h" int main() { static XGpioPs psGpioInstancePtr; XGpioPs_Config * GpioConfigPtr; int xStatus; int BtnPinDirection = 0, BtnPinNumber = 50; int LedPinDirection = 1, LedPinNumber = 7; int Readstatus = 0, OldReadstatus = 0; init_platform(); print("Hello World\n\r"); // step 1 : PS GPIO Initialization // GpioConfigPtr = XGpioPs_LookupConf..

AXI protocol : A point-to-point connection I used Vivado 2019.2 and referred to the https://support.xilinx.com/s/article/1058302?language=en_US site.
21 - Module pos module top_module ( input a, input b, input c, input d, output out1, output out2 ); mod_a (out1, out2, a, b, c, d); endmodule 22 - Module name module top_module ( input a, input b, input c, input d, output out1, output out2 ); mod_a (.in1(a), .in2(b), .in3(c), .in4(d), .out1(out1), .out2(out2)); endmodule 23 - Module shift module top_module ( input clk, input d, output q ); wire ..
11 - Vector0 module top_module ( input wire [2:0] vec, output wire [2:0] outv, output wire o2, output wire o1, output wire o0 ); // Module body starts after module declaration assign outv = vec; assign o2 = vec[2]; assign o1 = vec[1]; assign o0 = vec[0]; endmodule 12 - Vector1 `default_nettype none // Disable implicit nets. Reduces some types of bugs. module top_module( input wire [15:0] in, out..
01 - Step one module top_module( output one ); // Insert your code here assign one = 1; endmodule 02 - Zero module top_module( output zero );// Module body starts after semicolon assign zero = 0; endmodule 03 - Wire module top_module( input in, output out ); assign out = in; endmodule 04 - Wire4 module top_module( input a,b,c, output w,x,y,z ); assign w = a; assign x = b; assign y = b; assign z ..