본문 바로가기

분류 전체보기

(142)
Pulse Generator. module pulse_gen_en ( input clk , input rstb , input en_s , // using enable = 1 input en , // enable signal input input in , output out ); reg in_dly0; reg in_dly1; always@(posedge clk or negedge rstb) if(~rstb) begin in_dly0
SPI Interface. SPI Interface. `timescale 1 ns / 1 ps module task_spi ( // SPI master in out ports input i_spi_miso , output o_spi_clk , output o_spi_csn , output o_spi_wex , output o_spi_mosi ); localparam SPI_PER = 300; reg spi_clk; reg spi_csn; reg spi_wex; reg spi_mosi; reg [7:0] sp onlyiknowabout.tistory.com `timescale 1 ns / 1 ps module task_spi ( // SPI master in out ports input i_spi_miso , output o_spi..
sys_sync_gen module sys_sync_gen ( // clock reset input wire sys_clk , input wire rstb , // sync , de output reg hsync , output reg vsync , output reg de ); // parameter define localparam HS_IDLE = 2'd0 ; localparam HS_BP = 2'd1 ; localparam HS_ACTV = 2'd2 ; localparam HS_FP = 2'd3 ; localparam VS_IDLE = 2'd0 ; localparam VS_BP = 2'd1 ; localparam VS_ACTV = 2'd2 ; localparam VS_FP = 2'd3 ; localparam HBP = 1..
Image processing filter design. 보호되어 있는 글입니다.
MIPI specification. 보호되어 있는 글입니다.
Linux. 보호되어 있는 글입니다.
Verilog Projects. 1. 8x8 Multiplier 2. UART 3. Avalon Bus Modeling 4. Avalon Bus : PWM 5. Avalon Bus : GPIO 8-Bit Multiplier. Development Environment. Program : Quartus Prime 18.1 Lite Edition Tool : Modelsim 10.5b Starter Edition FPGA : MAX10 Grammer : Verilog2001 Objective. Design an 8-bit Multiplier module in Verilog and verify the results through simulation. Why? ALU는 CPU onlyiknowabout.tistory.com UART. Deve..
SoC Design with Nios II Processor. Nios II Processor Programmable Logic Device (ASIC, FPGA, CLPD) 설계에 사용하기 위해 Intel이 설계하고 개발한 소프트 코어 마이크로 프로세서 (Soft Core Micro-processor) 로 Device에 임베디드 시스템을 구축하기 위한 커스텀 하드웨어와 소프트웨어를 함께 디자인 및 개발할 수 있는 환경을 제공한다. 이를 통해, 응용 프로그램의 Specific Needs에 따라 기능과 주변 장치를 사용자가 직접 정의할 수 있다. (e.g. Platform Designer) Nios II Processor는 하버드 아키텍처를 사용한다. 또한 여러 Nios II 코어를 하나의 FPGA에 통합할 수 있는 대칭형 다중 처리 방식 (SMP, Symmetric..