일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 코드트리
- DenseDepth
- 삼성기출
- 싸움땅
- BFS
- 시뮬레이션
- 순서대로방문하기
- ARM
- 3Dreconstruction
- 나무박멸
- 슈퍼컴퓨터클러스터
- DP
- 포탑부수기
- 조합
- PQ
- 이진탐색
- 소프티어
- 코드트리빵
- 백준
- dfs
- 토끼와 경주
- 마이크로프로세서
- 수영대회결승전
- ICER
- Calibration
- 마법의숲탐색
- 구현
- 왕실의기사대결
- ros
- 루돌프의반란
Archives
- Today
- Total
목록verilog#counter (1)
from palette import colorful_colors

counter.v 파일 `timescale 1ns/1ns module counter (rst, on, clk, count, in, out0609); input rst, on, clk; output reg [3:0] count; reg [6:0]tmp; input in; output reg [6:0] out0609; always@(posedge clk) begin if(rst == 0) begin count = 0; out0609 = 0; end else if (on) begin//on이 1일때 가동 if(count == 6) begin count
EE 학부과목/verilog
2023. 3. 13. 14:45