好吧基本上我写了一个汇编函数来检测运行时是否存在某个进程。我没有完全得到内联汇编,即使我用asm包装器包装汇编代码,它仍然将内部代码检测为C代码...基本上它有点像这样:
__inline bool isProcLoaded()
{
_asm
{
mov ah, 0x48
int 0x68 ; After compiling it breaks on this line, the 'int' is highlighted
cmp ax ...
}
}
这里有什么问题,我该如何解决?