Line 41... |
Line 41... |
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
//
|
//
|
// CVS Revision History
|
// CVS Revision History
|
//
|
//
|
// $Log: not supported by cvs2svn $
|
// $Log: not supported by cvs2svn $
|
|
// Revision 1.17 2004/01/30 10:24:30 mohor
|
|
// Defines WISHBONE_SUPPORTED and CPU_SUPPORTED added. By default both are
|
|
// turned on.
|
|
//
|
// Revision 1.16 2004/01/20 14:23:45 mohor
|
// Revision 1.16 2004/01/20 14:23:45 mohor
|
// Define name changed.
|
// Define name changed.
|
//
|
//
|
// Revision 1.15 2003/12/23 15:07:34 mohor
|
// Revision 1.15 2003/12/23 15:07:34 mohor
|
// New directory structure. New version of the debug interface.
|
// New directory structure. New version of the debug interface.
|
Line 104... |
Line 108... |
// Initial release
|
// Initial release
|
//
|
//
|
//
|
//
|
|
|
|
|
// Length of the CHAIN ID register
|
// Length of the MODULE ID register
|
`define CHAIN_ID_LENGTH 3
|
`define MODULE_ID_LENGTH 4
|
|
|
// Length of data
|
// Length of data
|
`define CHAIN_DATA_LEN `CHAIN_ID_LENGTH + 1
|
`define MODULE_DATA_LEN `MODULE_ID_LENGTH + 1
|
`define DATA_CNT 3
|
`define DATA_CNT 3
|
|
|
// Length of status
|
// Length of status
|
`define STATUS_LEN 4
|
`define DBG_TOP_STATUS_LEN 3'd4
|
`define STATUS_CNT 3
|
`define DBG_TOP_STATUS_CNT_WIDTH 3
|
|
|
// Length of the CRC
|
// Length of the CRC
|
`define CRC_LEN 32
|
`define DBG_TOP_CRC_LEN 32
|
`define CRC_CNT 6
|
`define CRC_CNT 6
|
|
|
// Chains
|
// Chains
|
`define CPU_DEBUG_CHAIN 3'b000
|
`define CPU_DEBUG_MODULE 4'b0000
|
`define WISHBONE_DEBUG_CHAIN 3'b001
|
`define WISHBONE_DEBUG_MODULE 4'b0001
|
|
|
// If WISHBONE debugging is supported uncomment the folowing line
|
// If WISHBONE debugging is supported uncomment the folowing line
|
`define WISHBONE_SUPPORTED
|
`define WISHBONE_SUPPORTED
|
|
|
// If CPU_DEBUG is supported uncomment the folowing line
|
// If CPU_DEBUG is supported uncomment the folowing line
|
`define CPU_SUPPORTED
|
`define CPU_SUPPORTED
|
|
|
|
// If more debug info is needed, uncomment the follofing line
|
|
//`define MORE_DBG_INFO
|
|
|
|
|
No newline at end of file
|
No newline at end of file
|