Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

shiftregister_counter

Status
Not open for further replies.

seemagoyal44

Member level 1
Joined
Oct 20, 2007
Messages
39
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Activity points
1,535
can anyone explain what are the connections when counter counts the contents of say 8 bit shift register...means how the both work together...what are the conneections....
 

hi
module bit_8_ltst_rtst(Q,clk,rst,cntl,D);
output[7:0]Q;
input[7:0]D;
input clk,rst,cntl;
reg[7:0]Q;
always @ (posedge clk or negedge rst)
begin
if(rst)
Q<=1'b0;
else if(cntl)
Q<=D>>5;
else
Q<=D<<5;
end
endmodule
vamsi
 

Two of the most common types of shift register counters are ie: the Ring counter and the Johnson counter. They are basically shift registers with the serial outputs connected back to the serial inputs in
order to produce particular sequences. These registers are classified as
counters because they exhibit a specified sequence of states

**broken link removed**

**broken link removed**
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top