Opcode |
Instruction |
Description |
---|---|---|
0F 06 |
CLTS |
Clears TS flag in CR0 |
Clears the task-switched (TS) flag in the CR0 register. This instruction is intended for use in operating-system procedures. It is a privileged instruction that can only be executed at a CPL of 0. It is allowed to be executed in real-address mode to allow initialization for protected mode.
The processor sets the TS flag every time a task switch occurs. The flag is used to synchronize the saving of FPU context in multitasking applications. See the description of the TS flag in the section titled "Control Registers" in Chapter 2 of the IA-32 Intel(R) Architecture Software Developer's Manual, Volume 3, for more information about this flag.
CR0(TS) 0;
The TS flag in CR0 register is cleared.
#GP(0) - If the CPL is greater than 0.
None.
#GP(0) - If the CPL is greater than 0.
For details, see Volume 2A and Volume 2B of the Intel(R) 64 and IA-32 Intel Architecture Software Developer's Manual. For the latest updates on the instruction set information, go to the web site.