Vlsi World - Verilog Code For RAM & ROM12456
Vlsi World - Verilog Code For RAM & ROM12456
More
Next Blog
Create Blog
Sign In
vlsi world
Saturday, 4 February 2012
Blog Archive
2012 (35)
February (28)
vlsiupdatez.blogspot.com
VLSI SEMINAR TOPICS
Need of Textbooks softcopies
Digital questions -6
Digital questions-5
Digital questions - 4
Digital questions -3
Digital questions-2
Digital questions -1
Electronics Hardware Questions
http://vlsiworld-asic.blogspot.in/2012/02/verilog-code-for-ram-rom.html
1/6
11/20/2014
Follow by Em ail
Email address...
Submit
About Me
kumar
I am kumar from Andhra pradesh, INDIA. I
have completed M.Tech in VLSI. Getting
M.tech degree in VLSI is very easy because
now a days all colleges are offering this
course. But, entering into VLSI industry is not
that much easy as compared to software.
This is because of colleges are not having
proper infrastructure or proper tools as
required for VLSI course. So they are Lag in
campus placements too. Only IITs, NIITs, and
some other universities are good in course
and jobs. Even I have faced lot of problems to
enter into VLSI industry. So this blog contains
all the information exclusively for freshers,
latest technologies in VLSI, latest
updates,Openings for freshers, interview
questions for freshers, queries.
View my complete profile
Follow ers
Members (4)
Verilog code for a single-port RAM with synchronous read (read through).
module raminfr (clk, we, a, di, do);
input
clk;
input
we;
input [4:0] a;
input [3:0] di;
output [3:0] do;
reg
[3:0] ram [31:0];
reg
[4:0] read_a;
always @(posedge clk)
begin
if (we)
ram[a] <= di;
read_a <= a;
end
assign do = ram[read_a];
endmodule
Feedjit
http://vlsiworld-asic.blogspot.in/2012/02/verilog-code-for-ram-rom.html
2/6
11/20/2014
Verilog code for a dual-port RAM with synchronous read (read through).
module raminfr (clk, we, a, dpra, di, spo, dpo);
input
clk;
input
we;
input [4:0] a;
input [4:0] dpra;
input [3:0] di;
http://vlsiworld-asic.blogspot.in/2012/02/verilog-code-for-ram-rom.html
3/6
11/20/2014
http://vlsiworld-asic.blogspot.in/2012/02/verilog-code-for-ram-rom.html
4/6
11/20/2014
2 comments:
Manish Kumar Yadav SEO 1 August 2014 03:05
Thanks for sharing this post.
Om Nanotech offer complete range of Non-ECC DRAM modules. We are DRAM Components
Supplier Distributor in India Delhi/NCR.
Reply
http://vlsiworld-asic.blogspot.in/2012/02/verilog-code-for-ram-rom.html
5/6
11/20/2014
Comment as:
Publish
Google Account
Preview
Newer Post
Home
Older Post
blagoram a
http://vlsiworld-asic.blogspot.in/2012/02/verilog-code-for-ram-rom.html
6/6