标签: c++
如何在C ++中使用汇编中断?我想在C ++程序中使用汇编器通过键盘输入数据,但这标志着我中断中的异常。
char x; cout << "\nLetter: " << endl; _asm { mov ah, 01H int 21h mov x, al }