x86 IA32 Intel CPUのユーザーモードでEFLAGS.TFを設定/クリアする手順を知りたい
TFフラグをクリアするために以下を試しましたが、エラーが発生しました***** Unhandled interrupt vector *****
__asm__ volatile("pushl %eax\n\t"
"pushfl\n\t"
"popl %eax\n\t"
"xorl $0x0100, %eax\n\t"
"pushl %eax\n\t"
"popfl\n\t"
"popl %eax\n\t");