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

VAX/QVSS: Added debugging support to sim_video

This commit is contained in:
Mark Pizzolato
2013-09-25 16:41:40 -07:00
parent ab028c0a37
commit 8617a58c8f
3 changed files with 16 additions and 3 deletions

View File

@@ -168,7 +168,7 @@ struct key_event {
typedef struct mouse_event SIM_MOUSE_EVENT;
typedef struct key_event SIM_KEY_EVENT;
t_stat vid_open (uint32 width, uint32 height);
t_stat vid_open (DEVICE *dptr, uint32 width, uint32 height);
t_stat vid_close (void);
t_stat vid_poll_kb (SIM_KEY_EVENT *ev);
t_stat vid_poll_mouse (SIM_MOUSE_EVENT *ev);
@@ -180,4 +180,8 @@ t_stat vid_show_release_key (FILE* st, UNIT* uptr, int32 val, void* desc);
extern t_bool vid_active;
#define SIM_VID_DBG_MOUSE 0x01000000
#define SIM_VID_DBG_KEY 0x02000000
#define SIM_VID_DBG_VIDEO 0x04000000
#endif