8/9/20 8/9/2015 15
Design of Parallel IN - Seri Serial al OUT OUT Shift Shift Register Register using Behavior Behavior Modeling Modeling Style (Veril og CODE). ~ Veril Verilog og Programming By Naresh Singh Dobal Dobal
Search
HOM HOME
VERIL OG OG PR OG OG RA RA MS MS
VH DL DL
Projec ts ts
VERI LO LO G DESIG NS NS
Share Sha re
T UT UT OR ORIALS
ASSI GN GNMENT S
A BO BO UT UT US
Design of Parallel IN - Ser ial ial OUT Shift OUT Shift Register using Behavior Modeling Style (Verilog (Verilog CODE). 23:36
FaceBook Fa ceBook Likes Like Li ke
PR OJ OJECT S
Naresh Singh
CO NT NT AC AC T US
T ES EST IM IMO NI NI AL AL
Search Here Search
2 comments +2 Recommend this on Google
28,1 28 ,166 66 peo
Followers Join this site with Google Google Friend Connect Connect
Email Subscribe
Members Memb ers (28) Mor e » E mail address.. Submit
Powered by Blogger .
Design of Parallel In - Serial OUT OUT Shift Register using Behavior Modeling Style -
About About Me
Already Alread y a membe member? r? Sign in
Digital clock
NARESH SINGH Follow
22:38:49
78
VIEW MY COMPLETE P ROFI LE Output Waveform W aveform : Parallel IN - Serial OUT Shift Register
280,550
Popular Posts Design of Parallel IN Serial OUT Shift Register using Behavior Modeling Style (Verilog CODE). Design of Parallel In - Serial OUT Shift Register using Behavior Modeling Style Output Waveform Waveform : Parallel IN - Serial OUT Shi... 4 to 1 Multiplexer Design using Logical Expression (Verilog CODE) 4 to 1 Multiplexer Design using Logical Expression (Data Flow Modeling Style)Output Waveform : 4 to 1 Multiplexer Program - ... 1 :4
Verilog CODE -
Archives ▼ 2013 ( 108 ) ► November ( 8 )
//----------------------------------------------------------------------------// // Title
: parallel_in_ser ial_out
// Design
: vhdl_upload2
// Author
: Naresh Singh Dobal
// Company
:
[email protected]
// Verilog HDL Program Program s & Exercise with Naresh Singh Dobal. // //----------------------------------------------------------------------------// // File
: Parallel IN - Serial OUT Shift Register.v
module parallel_in_serial_out ( din ,clk ,reset ,load ,dout ); output dout ; reg dout ; input [3:0] din ; wire [3:0] din ;
Demultiplexer Design using Gates (Verilog CODE).
Total Pageviews
input clk ; wire clk ;
http://ver i logbynar esh.bl ogspot.in/2013/07/desi gn- of- par al lel - in- ser i al - out- shi ft.htm l
▼ July ( 100 ) The Three Basic Element inside a Computer Chip Let's start with making a Semiconductor Chip Let's Know about our Semiconductor Industry Computer Chips are Every-Where (Application of Ele... Very Important ACRONYMS & TERMS of Semiconductor Semicond uctor I.. . Electronics - Trends Setting Points World of Integrated Chips AND Electronic Design Design of 8 to 3 Parity Encoder using if else sta...
1/5
8/9/2015
Design of Parallel IN - Serial OUT Shift Register using Behavior Modeling Style (Veril og CODE). ~ Verilog Programming By Naresh Singh Dobal
1 : 4 Demultiplexer Design using Logical Gates (Data Flow Modeling Style)- Output WaveForm : 1 : 4 Demultiplexer Program- //-... Design of 4 Bit Comparator using Behavior Modeling Style (Verilog CODE) Design of 4 Bit Comparator using Behavior Modeling Style - Output Waveform : 4 Bit Comparator Design Verilog CODE - //-... Design of JK Flip Flop using Behavior Modeling Style (Verilog CODE) Design of JK Flip Flop using Behavior Modeling Style Output Waveform : JK Flip Flop Verilog CODE - //----------------... Design of Frequency Divider (Divide by 10) using Behavior Modeling Style (Verilog CODE) Design of Frequency Divider (Divide by 10) using Behavior Modeling Style Output Waveform : Frequency Divider (Divide by 10).... Design of 4 Bit Adder using 4 Full Adder Structural Modeling Style (Verilog Code) Design of 4 Bit Adder using 4 Full Adder (Structural Modeling Style) - Output Waveform : 4 Bit Adder using 4 Full Adder Verilog... Design of Serial In Serial Out Shift Register using D Flip Flop (Structural Modeling Style) (Verilog CODE). Design of Serial IN - Serial OUT Shift Register using D Flip Flop (Structural Modeling Style).. Output Waveform : Serial IN - . ..
input reset ;
Design of 8 : 3 Parity Encoder using conditional o...
wire reset ; input load ;
Design of 8 nibble queue using Behavior Modeling S...
wire load ; reg [3:0]temp;
Design of 8 nibble Stack using Behavior Modeling S...
always @ (posedge (clk)) begin if (reset)
Design of Parallel IN Serial OUT Shift Register ...
temp <= 1; else if (load)
FPGA / CPLD Based Project
temp <= din; else begin
System Design using Loop Statements (Behavior Mode...
dout <= temp[3]; temp <= {temp[2:0],1'b0}; end
Sample Programs for Basic Systems using Verilog HD...
end endmodule
Design of 4 Bit Adder cum Subtractor using Loops (...
Newer Post
Home
2 comments :
Manasa Hegde said... plzz give the testbench code for this... 22 October 2013 at 00:37
ANIL KUMAR said... plzz write the same code to run for 8 times 18 April 2014 at 01:50
Post a Comment
Publish
Design of 4 Bit Subtractor using Loops (Behavior M... Design of 4 Bit Adder using Loops (Behavior Modeli... Design of Stepper Motor Driver (Half Step) using B... Design of Stepper Motor Driver (Full Step) using B... Design of First In - First Out (FIFO) Register usi... Design of 8 Nibble RAM (memory) using Behavior Mod... Design of 8 Nibble ROM (Memory) using Behavior Mod...
Enter your comment...
Comment as:
Older Post
Google Accou
Sensor Based Traffic Light Controller using FSM Te... Timer Based Single Way Traffic Light Controller us... Design of ODD Counter using FSM Technique (Verilog...
Preview
Binary To Gray Code Converter using Logical Gates (Verilog CODE). Binary To Gray Code Converter using Logical Gates (Data Flow Modeling Style)- Output Waveform : Binary To Gray Code
http://verilogbynaresh.blogspot.in/2013/07/design-of-parallel-in-serial-out-shift.html
Design of Frequency Dividers in Verilog HDL Counters Design in Verilog HDL. Design of MOD-6 Counter using Behavior Modeling St... Design of BCD Counter using Behavior Modeling Styl.. . Design of Integer Counter using Behavior Modeling ... Design of 4 Bit Binary Counter using Behavior Mode...
2/5
8/9/2015
Design of Parallel IN - Serial OUT Shift Register using Behavior Modeling Style (Veril og CODE). ~ Verilog Programming By Naresh Singh Dobal
Converter Ver... Design of Serial IN Parallel OUT Shift Register using Behavior Modeling Style (Verilog CODE)Design of Serial IN - Parallel Out Shift Register using Behavior Modeling Style Output Waveform : Serial IN - Parallel OUT ...
Design of 2 Bit Binary Counter using Behavior Mode... Design of Frequency Divider (Divide by 10) using B... Design of Frequency Divider (Divide by 8) using Be... Design of Frequency Divider (Divide by 4) using Be... Design of Frequency Divider (Divide by 2) using Be... Modeling Styles in Verilog HDL How to use CASE Statements in Behavior Modeling St... How to use IF-ELSE Statements in Behavior Modeling... Design of 4 Bit Comparator using Behavior Modeling... Design of Binary To GRAY Code Converter using CASE... Design of GRAY to Binary Code Converter using if-e... Small Description about Behavior Modeling Style in... Design of Parallel IN Parallel OUT Shift Registe... Design of Serial IN Parallel OUT Shift Register ... Design of Serial IN Serial OUT Shift Register us... Design of SR Latch using Behavior Modeling Style (... Design of D-Latch using Behavior Modeling Style (V... Design of Toggle Flip Flop using Behavior Modeling... Design of JK Flip Flop using Behavior Modeling Sty. .. Design of SR (Set Reset) Flip Flop using Behavio... Design of D-Flip Flop using Behavior Modeling Styl.. . Design of BCD to 7 Segment Driver for Common Catho... Design of BCD to 7 Segment Driver using IF-ELSE St... Design of GRAY to Binary Code
http://verilogbynaresh.blogspot.in/2013/07/design-of-parallel-in-serial-out-shift.html
3/5
8/9/2015
Design of Parallel IN - Serial OUT Shift Register using Behavior Modeling Style (Veril og CODE). ~ Verilog Programming By Naresh Singh Dobal Converter using CASE... Design of Binary to GRAY Code Converter using if-e... Design of 2 to 4 Decoder using CASE Statements (Be... Design of 4 to 2 Encoder using CASE Statements (Be... Design of 1 to 4 Demultiplexer uisng CASE Statemen... Design of 4 to 1 Multiplexer using case statements... Design of 2 to 4 Decoder using if-else statements ... Design of 4 to 2 Encoder using if else statements... Design of 1 to 4 Demultiplexer using IF-ELSE state... Design of 4 to 1 Multiplexer using if else statem... Design of Master Slave Flip Flop using D Flip Flo... Design of toggle Flip Flop using D Flip Flop (Stru... Design of Parallel IN Parallel OUT Shift Regis... Design of 4 Bit Serial IN - Parallel OUT Shift... Design of Serial In Serial Out Shift Register u... Design of 4 Bit Adder cum Subtractor using xor Gat... Design of 4 Bit Adder cum Subtractor using Structu... Design of 4 Bit Subtractor using Structural Modeli... Design of 4 Bit Adder using 4 Full Adder Structura... Design of 2 to 1 Multiplexer using Gate Level Mode... Small Description about Gate Level Modeling Style ... Conditional Operator (Data Flow Modeling Style) Ve... Design of 2 Bit Comparator using Conditional Opera... Design of BCD to 7 Segment Driver for Common Anode... Design of BCD to 7
http://verilogbynaresh.blogspot.in/2013/07/design-of-parallel-in-serial-out-shift.html
4/5
8/9/2015
Design of Parallel IN - Serial OUT Shift Register using Behavior Modeling Style (Veril og CODE). ~ Verilog Programming By Naresh Singh Dobal Segment Driver for Common Catho... Design of Binary To Excess3 Code Converter using C... Design of 2 : 4 Decoder using Conditional Operator... Design of 4 : 2 Encoder using Conditional Operator... Design of 1 :4 Demultiplexer using Conditional Ope... Design of 4 : 1 Multiplexer using Conditional Oper... Digital System Design using Logical Expression (Ve... Design of Gray to Binary Code Converter using Logi... Binary To Gray Code Converter using Logical Gates ... Design of 1 Bit Comparator using Logical Gates (V... 4 : 2 Encoder using Logical Gates (Verilog CODE). 2 : 4 Decoder using Logical Gates (Verilog CODE). Half Subtractor Design using Logical Expression (V... 1 : 4 Demultiplexer Design using Gates (Verilog CO... 4 to 1 Multiplexer Design using Logical Expression... Full Subtractor Design using Logical Gates (Verilo... Full Adder Design using Logical Expression (Verilo... Half Adder Design using Logical Expressions (Veril... Logical Operators test in Verilog HDL Design Simple AND Gate Design using Verilog HDL Small Description about Data Flow Modeling Style i...
Copyright © 2011 Verilog Programming By Naresh Singh Dobal | Powered by Blogger Design by Wordpress Theme | Bloggerized by Free Blogger Templates | coupon codes
http://verilogbynaresh.blogspot.in/2013/07/design-of-parallel-in-serial-out-shift.html
5/5