由买买提看人间百态

topics

全部话题 - 话题: clki
(共0页)
A***J
发帖数: 478
1
来自主题: EE版 - Interview questions
never heard about the first
for the second question.
The way I implement it is like below
============================
`timescale 1ns/100ps
`define clk_period 100
module clk51(clki, rst, clko);
input clki;
input rst;
output clko;
reg clko;
reg[2:0] cnt;
always #`clk_period clki=~clki
always @ (posedge clki) //count to 5
begin
if(!rst)
cnt=0;
else if (cnt==5)
cnt=0;
else
cnt=cnt+1;
end

always @ (posedge clki) // clko
begin
if(!rst)
clko=0;
else if (cnt<5)
clko=
t********r
发帖数: 804
2
看挖坟的,发个贴
Stack a new printable Target coupon with a printable manufacturer coupon to
score a bottle of Suave Professionals Natural Infusion shampoo free at
Target! See details below:
Suave Professionals Natural Infusion Shampoo or Conditioner $2.84, sale
price through 3/15
Use $1.50/1 – Suave Natural Infusions Product
http://www.coupons.com/coupons/?pid=15493&nid=10&zid=yn07&plid=
http://coupons.target.com/?ref=tgt_adv_xasd0003&afid=32103&clki
Target Coupon (target.com)
c****n
发帖数: 15245
(共0页)