asm 关键字用于声明内联汇编代码。使用 Windows 编译器时,使用 __asm 关键字代替。此处 asm 关键字不执行任何操作。
asm { mov al, 4 mov dx, 0xD007 out dx, al }