728x90 반응형 분류 전체보기129 2023학년도 적용 설계방 이수증 스마트 멀티탭 + 솔라 트래킹 태양광 충전기 그린 에너지 시스템 제작 (IoT, ML 등의 기술 활용) 최우수상 받았습니다. 2024. 1. 26. [HDLBits 해설] Vector 2 문제 링크 : https://hdlbits.01xz.net/wiki/Vector2 문제 32-bit input과 output이 있다. 각 신호는 4-byte씩 끊어서 볼 수 있다. input의 byte 순서를 반대로 output 에 저장하라. AaaaaaaaBbbbbbbbCcccccccDddddddd => DdddddddCcccccccBbbbbbbbAaaaaaaa Module 선언 module top_module( input [31:0] in, output [31:0] out );// // assign out[31:24] = ...; endmodule 내 풀이 module top_module( input [31:0] in, output [31:0] out ); assign out [31:24] = in .. 2024. 1. 22. [HDLBits 해설] Vector 1 문제 링크 : https://hdlbits.01xz.net/wiki/Vector1 문제 16bits, [15:0] input 을 8 bit씩 반반 나눠서 output으로 보내는 combinational circuit 설계 lower [7:0] byte 와 upper [15:8] byte 로 나누시오. Module 선언 `default_nettype none // Disable implicit nets. Reduces some types of bugs. module top_module( input wire [15:0] in, output wire [7:0] out_hi, output wire [7:0] out_lo ); endmodule 내 풀이 `default_nettype none // Disable .. 2024. 1. 22. [Verilog] 세제곱 Pipeline 설계 Pipeline Design 기능 정의input에 대한 세제곱 값을 출력input 값이 유효한지 확인하는 valid 신호PipelineLatency : 3 cycleThroughput : 1 cycle 회로도 결과Waveform초반 부분 (사진 위)후반 부분 (사진 아래) 2024. 1. 22. 이전 1 ··· 8 9 10 11 12 13 14 ··· 33 다음 728x90 반응형