可编程硬件描述语言VHDL Quartus三八译码器源代码.pdf
2021-08-21 09:37:59 163KB VHDL Quartus 硬件描述语言 三八译码器
1
可编程硬件描述语言VHDL Quartus三输入与门源代码.pdf
2021-08-21 09:37:58 162KB VHDL 硬件描述语言 Quartus 三输入与门
1
可编程硬件描述语言VHDL Quartus数值比较器源代码.pdf
2021-08-21 09:37:58 148KB VHDL Quartus 硬件描述语言 数值比较器
1
可编程硬件描述语言VHDL Quartus四选一电路源代码.pdf
2021-08-21 09:37:57 149KB 硬件描述语言 VHDL Quartus 四选一电路
1
此文档详细描述了PLL配置的整个过程。通俗易通。
2021-08-20 20:20:48 664KB verilog PLL 配置手册
1
FPGA读写EEPROM芯片AT24C02实验Verilog逻辑源码Quartus11.0工程文件, FPGA型号为CYCLONE4E系列中的EP4CE6E22C8,可以做为你的学习设计参考。 module iic_com( clk,rst_n, sw1,sw2, scl,sda, dis_data ); input clk; // 50MHz input rst_n; //复位信号,低有效 input sw1,sw2; //按键1、2,(1按下执行写入操作,2按下执行读操作) output scl; // 24C02的时钟端口 inout sda; // 24C02的数据端口 output[7:0] dis_data; //数码管显示的数据 //按键检测 reg sw1_r,sw2_r; //键值锁存寄存器,每20ms检测一次键值 reg[19:0] cnt_20ms; //20ms计数寄存器 always @ (posedge clk or negedge rst_n) begin if(!rst_n) cnt_20ms <= 20'd0; else cnt_20ms <= cnt_20ms+1'b1; //不断计数 end always @ (posedge clk or negedge rst_n) begin if(!rst_n) begin sw1_r <= 1'b1; //键值寄存器复位,没有键盘按下时键值都为1 sw2_r <= 1'b1; end else if(cnt_20ms == 20'hfffff) begin sw1_r <= sw1; //按键1值锁存 sw2_r <= sw2; //按键2值锁存 end end //--------------------------------------------- //分频部分 reg[2:0] cnt; // cnt=0:scl上升沿,cnt=1:scl高电平中间,cnt=2:scl下降沿,cnt=3:scl低电平中间 reg[8:0] cnt_delay; //500循环计数,产生iic所需要的时钟 reg scl_r; //时钟脉冲寄存器 always @ (posedge clk or negedge rst_n) begin if(!rst_n) cnt_delay <= 9'd0; else if(cnt_delay == 9'd499) cnt_delay <= 9'd0; //计数到10us为scl的周期,即100KHz else cnt_delay <= cnt_delay+1'b1; //时钟计数 end always @ (posedge clk or negedge rst_n) begin if(!rst_n) cnt <= 3'd5; else begin case (cnt_delay) 9'd124: cnt <= 3'd1; //cnt=1:scl高电平中间,用于数据采样 9'd249: cnt <= 3'd2; //cnt=2:scl下降沿 9'd374: cnt <= 3'd3; //cnt=3:scl低电平中间,用于数据变化 9'd499: cnt <= 3'd0; //cnt=0:scl上升沿 default: cnt <= 3'd5; endcase end end `define SCL_POS (cnt==3'd0) //cnt=0:scl上升沿 `define SCL_HIG (cnt==3'd1) //cnt=1:scl高电平中间,用于数据采样 `define SCL_NEG (cnt==3'd2) //cnt=2:scl下降沿 `define SCL_LOW (cnt==3'd3) //cnt=3:scl低电平中间,用于数据变化 always @ (posedge clk or negedge rst_n) begin if(!rst_n) scl_r <= 1'b0; else if(cnt==3'd0) scl_r <= 1'b1; //scl信号上升沿
Quartus_II_13.1破解器.zip x86 Quartus_II_13.1破解器.zip x86
2021-08-20 12:08:34 71KB QuartusII 13.1 破解
1
运用quartus的dds技术来实现ask、fsk、psk以及fm
2021-08-18 19:28:30 1.26MB FPGA quartus dds
1
windows64位Quartus II 15.0安装包,Quartus II 15.0 (64-bit)安装包
2021-08-16 20:01:41 133KB Quartus
1
SPYRAL破解组织对Quartus II 9.1的完全破解,使用licgen.exe可以直接生成license.dat,然后用压缩包中sys_cpt.dll文件替换掉altera安装目录中的sys_cpt.dll文件,就OK了!Enjoy!
2021-08-15 21:47:21 1.56MB QuartusII9.1 破解 SPYRAL
1