params.v
来自「ddr_sdram控制器的vhdl代码,里面的地址和数据长度可配置,能满足不同用」· Verilog 代码 · 共 37 行
V
37 行
/******************************************************************************
*
* LOGIC CORE: SDRAM Controller - Global Constants
* MODULE NAME: params()
* COMPANY: Northwest Logic Design, Inc.
* www.nwlogic.com
*
* REVISION HISTORY:
*
* Revision 1.0 05/12/2000
* Description: Initial Release.
*
*
* FUNCTIONAL DESCRIPTION:
*
* This file defines a number of global constants used throughout
* the SDRAM Controller.
* Copyright Northwest Logic Design, Inc., 2000. All rights reserved.
******************************************************************************/
// Address Space Parameters
`define ROWSTART 8
`define ROWSIZE 12
`define COLSTART 0
`define COLSIZE 8
`define BANKSTART 19
`define BANKSIZE 2
// Address and Data Bus Sizes
`define ASIZE 22 // total address width of the SDRAM
`define DSIZE 128 // Width of data bus to SDRAMS
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?