1
0
mirror of https://github.com/simh/simh.git synced 2026-04-17 00:36:00 +00:00

SCP: Move sim_ library debug masks to all be high bits

This is to allow DEVICE defined debug masks to start using the low bits
in the 32 bit debug mask and avoid collisions with library defined values.
This commit is contained in:
Mark Pizzolato
2019-01-23 15:17:19 -08:00
parent 183a8aab60
commit 2f8fca49c6
6 changed files with 36 additions and 31 deletions

View File

@@ -213,10 +213,10 @@ void vid_set_cursor_position (int32 x, int32 y); /* cursor position (set
*/
extern int (*vid_display_kb_event_process)(SIM_KEY_EVENT *kev);
#define SIM_VID_DBG_MOUSE 0x01000000
#define SIM_VID_DBG_CURSOR 0x02000000
#define SIM_VID_DBG_KEY 0x04000000
#define SIM_VID_DBG_VIDEO 0x08000000
#define SIM_VID_DBG_MOUSE 0x10000000
#define SIM_VID_DBG_CURSOR 0x20000000
#define SIM_VID_DBG_KEY 0x40000000
#define SIM_VID_DBG_VIDEO 0x80000000
#ifdef __cplusplus
}