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