mirror of
https://github.com/sxpert/hp-saturn
synced 2024-11-16 19:50:19 +01:00
009f01f5d7
implement GOVLNG dump 2 lines of registers in debugger now
29 lines
No EOL
781 B
Verilog
29 lines
No EOL
781 B
Verilog
`ifndef _SATURN_DEF_DEBUGGER
|
|
`define _SATURN_DEF_DEBUGGER
|
|
|
|
|
|
/*
|
|
* debugger values for the register dump
|
|
*/
|
|
|
|
`define DBG_REG_PC_STR 0
|
|
`define DBG_REG_PC_VALUE 1
|
|
`define DBG_REG_PC_SPACES 2
|
|
`define DBG_REG_CARRY 3
|
|
`define DBG_REG_CALC_MODE 4
|
|
`define DBG_REG_RSTK_PTR 5
|
|
`define DBG_REG_RSTK7_STR 6
|
|
`define DBG_REG_RSTK7_VALUE 7
|
|
`define DBG_REG_NL_0 8
|
|
`define DBG_REG_P 9
|
|
`define DBG_REG_HST 10
|
|
`define DBG_REG_HST_SPACES 11
|
|
`define DBG_REG_ST_STR 12
|
|
`define DBG_REG_ST_VALUE 13
|
|
`define DBG_REG_ST_SPACES 14
|
|
`define DBG_REG_RSTK6_STR 15
|
|
`define DBG_REG_RSTK6_VALUE 16
|
|
`define DBG_REG_NL_1 17
|
|
|
|
`define DBG_REG_END 31
|
|
`endif |