Rev 656 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 656 | Rev 672 | ||
|---|---|---|---|
| Line 77... | Line 77... | ||
| 77 | #define GLUK_B_DATA_MODE 0x04 |
77 | #define GLUK_B_DATA_MODE 0x04 |
| 78 | /** B register 1 bit - 24/12 mode (A 1 indicates the 24-hour mode and a 0 indicates the 12-hour mode). */ |
78 | /** B register 1 bit - 24/12 mode (A 1 indicates the 24-hour mode and a 0 indicates the 12-hour mode). */ |
| 79 | #define GLUK_B_24_12_MODE 0x02 |
79 | #define GLUK_B_24_12_MODE 0x02 |
| 80 | /** C register 4 bit - Update-ended interrupt flag [UF] (Bit is set after each update cycle, UF is cleared by reading Register C or a RESET). */ |
80 | /** C register 4 bit - Update-ended interrupt flag [UF] (Bit is set after each update cycle, UF is cleared by reading Register C or a RESET). */ |
| 81 | #define GLUK_C_UPDATE_FLAG 0x10 |
81 | #define GLUK_C_UPDATE_FLAG 0x10 |
| 82 | /** C register 0 bit - unused in original, but in ZXEVO clear PS2 keyboard log. */ |
82 | /** C register 0 bit - unused in original, but in ZXEVO clear PS2 keyboard log on write. */ |
| - | 83 | /** C register 0 bit - unused in original, but in ZXEVO NUM LED status of PS2 keyboard on read. */ |
|
| 83 | #define GLUK_C_CLEAR_LOG_FLAG 0x01 |
84 | #define GLUK_C_CLEAR_LOG_FLAG 0x01 |
| - | 85 | #define GLUK_C_NUM_LED_FLAG 0x01 |
|
| 84 | /** C register 1 bit - unused in original, but in ZXEVO switch CAPS LED mode on PS2 keyboard. */ |
86 | /** C register 1 bit - unused in original, but in ZXEVO switch CAPS LED mode on PS2 keyboard. */ |
| 85 | #define GLUK_C_CAPS_LED_FLAG 0x02 |
87 | #define GLUK_C_CAPS_LED_FLAG 0x02 |
| 86 | /** C register 2 bit - unused in original, but in ZXEVO switch EEPROM mode on extra bytes (>0xF0). */ |
88 | /** C register 2 bit - unused in original, but in ZXEVO switch EEPROM mode on extra bytes (>0xF0). */ |
| 87 | #define GLUK_C_EEPROM_FLAG 0x80 |
89 | #define GLUK_C_EEPROM_FLAG 0x80 |
| 88 | 90 | ||