当前位置:网站首页>Verilog implements a divide-by-9 with a duty cycle of 5/18
Verilog implements a divide-by-9 with a duty cycle of 5/18
2022-07-31 20:40:00 【FPGA Silicon Farmers】
Design ideas:
Set up a rising edge-triggered counter and a falling edge-triggered counter, whose duty cycle is both 6/18 and divided by 9, then these twoThe clocks are differences in phase by half a cycle, if they are summed, according to the nature of the sum, the result should be a duty cycle of 6/18-1/18=5/A divide-by-9 clock of 18.
or
Set up a counter triggered by rising edge and falling edge respectively, its duty cycle is 4/18 and divided by 9, if the two clocks are phase or, the result should be a divide-by-9 clock with a duty cycle of 4/18+1/18=5/18.
Code Implementation
Design section
`timescale 1ns/1nsmodule clk_divider //5/18 divider( input clk_in,input rst_n,output clk_out);边栏推荐
- MySQL---aggregate function
- iNeuOS工业互联网操作系统,设备运维业务和“低代码”表单开发工具
- Routing interception of WeChat applet
- c语言解析json字符串(json对象转化为字符串)
- Embedded development has no passion, is it normal?
- MySQL---Basic select statement
- API for JD.com to obtain historical price information of commodities
- -xms -xmx(information value)
- grep command written test questions
- All-platform GPU general AI video supplementary frame super-score tutorial
猜你喜欢
随机推荐
有一说一,外包公司到底值不值得去?
sqlite3 simple operation
请问我的这段sql中sql语法哪里出了错
架构师04-应用服务间加密设计和实践
获取抖音视频详情 API
MySQL---Subqueries
每月一书(202207):《Swift编程权威指南》
Three. Introduction to js
基于STM32 环形队列来实现串口接收数据
架构实战营模块八作业
Qualcomm cDSP simple programming example (to query Qualcomm cDSP usage, signature), RK3588 npu usage query
Socket Review and I/0 Model
Memblaze released the first enterprise-grade SSD based on long-lasting particles. What is the new value behind it?
【AcWing】第 62 场周赛 【2022.07.30】
老牌音乐播放器 WinAmp 发布 5.9 RC1 版:迁移到 VS 2019 完全重建,兼容 Win11
Performance optimization: remember a tree search interface optimization idea
Pytorch lstm time series prediction problem stepping on the pit "recommended collection"
深度学习中的batch(batch size,full batch,mini batch, online learning)、iterations与epoch
Realization of character makeup
Shell script quick start to actual combat -02








