tailieunhanh - Verilog Examples part 2

[ Team LiB ] Behavioral DRAM Model This example describes a behavioral implementation of a 256K x 16 DRAM. The DRAM has 256K 16-bit memory locations. The input/output ports of the DRAM are shown in Figure F-2. Figure F-2. | Team LiB Behavioral DRAM Model This example describes a behavioral implementation of a 256K x 16 DRAM. The DRAM has 256K 16-bit memory locations. The input output ports of the DRAM are shown in Figure F-2. Figure F-2. DRAM Input Output Ports Input ports All ports with a suffix N are low-asserted. MA 10-bit memory address OE_N Output enable for reading data RAS_N Row address strobe for asserting row address CAS_N Column address strobe for asserting column address LWE_N Lower write enable to write lower 8 bits of DATA into memory UWE_N Upper write enable to write upper 8 bits of DATA into memory Inout ports DATA 16-bit data as input or output. Write input if LWE_N or UWE_N is asserted. Read output if OE_N is asserted. The Verilog HDL code for the DRAM implementation is shown in Example F-2. Example F-2 Behavioral DRAM Model FileName - functional model of a 256K x 16 DRAM Author Venkata Ramana Kalapatapu Company Sand Microelectronics Inc. now a part of Synopsys Inc. Profile Sand develops Simulation Models Synthesizable Cores and Performance Analysis Tools for Processors buses and memory products. Sand s products include models for industry-standard components and custom-developed models for specific simulation environments. module DRAM DATA MA RAS_N CAS_N LWE_N UWE_N OE_N inout 15 0 DATA input 9 0 MA input RAS_N input CAS_N input LWE_N input UWE_N input OE_N reg 15 0 memblk 0 262143 Memory Block. 256K x 16. reg 9 0 rowadd RowAddress Upper 10 bits of MA. reg 7 0 coladd ColAddress Lower 8 bits of MA. reg 15 0 rd_data Read Data. reg 15 0 temp_reg reg hidden_ref reg last_lwe reg last_uwe reg cas_bef_ras_ref reg end_cas_bef_ras ref reg last_cas reg read reg rmw reg output_disable_check integer page_mode assign 5 DATA OE_N 1 b0 CAS_N 1 b0 rd_data 16 bz parameter infile ini_file Input file for preloading the Dram. initial begin readmemh infile memblk end always @ RAS_N begin if RAS_N 1 b0 begin if CAS_N 1 b1 begin rowadd MA end else hidden_ref 1 b1 end else .

TÀI LIỆU MỚI ĐĂNG
crossorigin="anonymous">
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.