1
0
mirror of https://github.com/simh/simh.git synced 2026-01-26 04:01:38 +00:00

All simulator DEVICES using VIDEO: Set DEV_DISPLAY in the DEVICE flags

This commit is contained in:
Mark Pizzolato
2022-07-24 11:37:39 -10:00
parent a9a68f6928
commit 0e79fbcc70
13 changed files with 13 additions and 13 deletions

View File

@@ -562,7 +562,7 @@ struct DEVICE {
#define DEV_MUX (4 << DEV_V_TYPE) /* sim_tmxr Attach */
#define DEV_CARD (5 << DEV_V_TYPE) /* sim_card Attach */
#define DEV_ETHER (6 << DEV_V_TYPE) /* Ethernet Device */
#define DEV_DISPLAY (7 << DEV_V_TYPE) /* Display Device */
#define DEV_DISPLAY (7 << DEV_V_TYPE) /* Display Device (sim_video) */
#define DEV_TYPE(dptr) ((dptr)->flags & DEV_TYPEMASK)
#define DEV_UFMASK_31 (((1u << DEV_V_RSV) - 1) & ~((1u << DEV_V_UF_31) - 1))