From 8aaf211c5b9f3d34c49c48d9fca59c4a0a96ca04 Mon Sep 17 00:00:00 2001 From: joevt Date: Tue, 30 Jan 2024 17:24:23 -0800 Subject: [PATCH] macio: Add fatman bits register. This register is used in the control ndrv to detect presence of connected S-Video or composite video display. --- devices/ioctrl/macio.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/devices/ioctrl/macio.h b/devices/ioctrl/macio.h index f2a9a95..403a679 100644 --- a/devices/ioctrl/macio.h +++ b/devices/ioctrl/macio.h @@ -83,7 +83,10 @@ enum { MIO_INT_EVENTS1 = 0x20, MIO_INT_MASK1 = 0x24, MIO_INT_CLEAR1 = 0x28, - MIO_INT_LEVELS1 = 0x2C + MIO_INT_LEVELS1 = 0x2C, + + MIO_FATMAN_FLAGS = 0x34, + // 0x300000 bits for composite/s-video connected displays (1 = disconnected) }; class IobusDevice {