1
0
mirror of https://github.com/simh/simh.git synced 2026-01-28 12:49:21 +00:00

TAPE: Better expose the various tape debug options usable from device debug

- Cleanup tape debug options and internal usage
- Add MTSE_DBG_INT for internal API activities
- Make sure SCSI uses the correct debug value for tape debug
This commit is contained in:
Mark Pizzolato
2025-12-02 08:19:09 -10:00
parent 5c68a17c13
commit ab832ce274
5 changed files with 39 additions and 35 deletions

View File

@@ -524,7 +524,7 @@ MTAB tq_mod[] = {
#define DBG_INI 0x0002 /* display setup/init sequence info */
#define DBG_REG 0x0004 /* trace read/write registers */
#define DBG_REQ 0x0008 /* display transfer requests */
#define DBG_TAP 0x0010 /* display sim_tape activities */
#define DBG_TAP MTSE_DBG_API /* display sim_tape activities */
#define DBG_STR MTSE_DBG_STR /* display tape structure detail */
#define DBG_POS MTSE_DBG_POS /* display position activities */
#define DBG_DAT MTSE_DBG_DAT /* display transfer data */

View File

@@ -389,7 +389,7 @@ MTAB ts_mod[] = {
/* debugging bitmaps */
#define DBG_REG 0x0001 /* display read/write register access */
#define DBG_REQ 0x0002 /* display transfer requests */
#define DBG_TAP MTSE_DBG_STR /* display sim_tape and tape structure detail */
#define DBG_TAP MTSE_DBG_API|MTSE_DBG_STR /* display sim_tape and tape structure detail */
#define DBG_POS MTSE_DBG_POS /* display position activities */
#define DBG_DAT MTSE_DBG_DAT /* display transfer data */