isp8_cfg.v

来自「简单的8位CPU」· Verilog 代码 · 共 47 行

V
47
字号
// =============================================================================
//                           COPYRIGHT NOTICE
// Copyright 2000-2001 (c) Lattice Semiconductor Corporation
// ALL RIGHTS RESERVED
// This confidential and proprietary software may be used only as authorised
// by a licensing agreement from Lattice Semiconductor Corporation.
// The entire notice above must be reproduced on all authorized copies and
// copies may only be made to the extent permitted by a licensing agreement
// from Lattice Semiconductor Corporation.
//
// Lattice Semiconductor Corporation    TEL : 1-800-Lattice (USA and Canada)
// 5555 NE Moore Court                        408-826-6000 (other locations)
// Hillsboro, OR 97124                  web  : http://www.latticesemi.com/
// U.S.A                                email: techsupport@latticesemi.com
// =============================================================================
//                         FILE DETAILS
// Project          : isp8
// File             : isp8_cfg.v
// Title            :
// Dependencies     : 
// Description      : User defined Configuration parameters for isp8.    
// =============================================================================
//                        REVISION HISTORY
// Version          : 1.0
// Author(s)        : Umesh Ananthiah
// Mod. Date        : May 05, 2005
// Changes Made     : Initial Creation
// =============================================================================

// If defined, Register file will have 16 registers (r0 - r15)
// Default is 32 registers ((r0 - r31)
`define REGISTERS_16

// If defined, Internal scratch pad memory is 16 bytes. 
// Default is 32 bytes
`define SCRATCH_PAD_MEM_16

// If defined, there is external scratch pad memory. 
// Default: No external scratch pad memory.
//`define EXT_SP_MEM

// The value defines the address bus width for external
// memory/IO access ("ext_addr")
`define EXT_AW   8

// =============================================================================

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?