-
Notifications
You must be signed in to change notification settings - Fork 99
TESTUI
Henk-Jan Lebbink edited this page Jun 4, 2026
·
1 revision
TESTUI — Determine User Interrupt Flag
| Opcode/ Instruction | Op/ En | 64/32 bit Mode Support | CPUID Feature Flag | Description |
| F3 0F 01 ED TESTUI | ZO | V/I | UINTR | Copies the current value of UIF into EFLAGS.CF. |
| Op/En | Tuple | Operand 1 | Operand 2 | Operand 3 | Operand 4 |
| ZO | N/A | N/A | N/A | N/A | N/A |
CF ← UIF;
ZF ← AF ← OF ← PF ← SF ← 0;The ZF, OF, AF, PF, SF flags are cleared and the CF flags to the value of the user interrupt flag.
#UD The TESTUI instruction is not recognized in protected mode.
#UD The TESTUI instruction is not recognized in real-address mode.
#UD The TESTUI instruction is not recognized in virtual-8086 mode.
#UD The TESTUI instruction is not recognized in compatibility mode.
#UD If the LOCK prefix is used. If executed inside an enclave. If CR4.UINTR = 0. If CPUID.07H.00H:EDX.UINTR[5] = 0.
Source: Intel® 64 and IA-32 Architectures Software Developer's Manual, Combined Volumes (Order Number 325462-091US, March 2026)
Generated: 7-6-2026