?? ddr2_32mx32_fifo_0_wr_en_0.v
字號(hào):
///////////////////////////////////////////////////////////////////////////////// Copyright (c) 2005-2007 Xilinx, Inc.// This design is confidential and proprietary of Xilinx, All Rights Reserved.///////////////////////////////////////////////////////////////////////////////// ____ ____// / /\/ /// /___/ \ / Vendor : Xilinx// \ \ \/ Version : $Name: i+IP+131489 $// \ \ Application : MIG// / / Filename : ddr2_32Mx32_fifo_0_wr_en_0.v// /___/ /\ Date Last Modified : $Date: 2007/09/21 15:23:18 $// \ \ / \ Date Created : Mon May 2 2005// \___\/\___\// Device : Spartan-3/3A/3A-DSP// Design Name : DDR2 SDRAM// Purpose : This module generate the write enable signal to the fifos,// which are driven by negedge data strobe.///////////////////////////////////////////////////////////////////////////////`timescale 1ns/100psmodule ddr2_32Mx32_fifo_0_wr_en_0 ( input clk, input reset, input din, output rst_dqs_delay_n, output dout ); localparam TIE_HIGH = 1'b1; wire din_delay; assign rst_dqs_delay_n = ~din_delay; assign dout = (din | (din_delay)); FDCE delay_ff (.Q (din_delay), .C (clk), .CE (TIE_HIGH), .CLR (reset), .D (din));endmodule
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -