--------------------Configuration: pcsx - Win32 Release--------------------
Performing Custom Build Step on ..\ix86\iCpuId.asm
系统找不到指定的路径。
Error executing c:\windows1\system32\cmd.exe.pcsx.exe - 1 error(s), 0 warning(s)
The following environment variables were not found
$(MSVCDIR)以上是错误提示,其他的还没显示,妈的,开始说头文件没定义,后来把头文件删除了,出现300个错误,啊呀,
稍微修改后编程这个样子了,我cmd.exe有这个文件呀,请教怎样改正!!!!!!详细说清楚,再给各位100分!!!!!!
谢谢!!!系统是XP,win32SDK写的

解决方案 »

  1.   

    Performing Custom Build Step on ..\ix86\iCpuId.asmso the asm file is built by custom build command, refer to http://expert.csdn.net/Expert/topic/852/852740.xml?temp=.3023493 to see how to set custom build command for asm file, change its setting according to your development environment.
      

  2.   

    Windows OS 和CPU有非常紧密的联系,每个版本的OS的安全制度不尽相同。如果你想要在Windows环境下通过汇编调用中断,首先得熟悉你编程所在的操作系统。在Win9X下调用汇编会较容易一些,是因为Win 9X的OS尚未达到NT4以及2000的系统稳定及安全保护的高度。而在NT4 尤其是Win2000 下用汇编调用中断编程则需要费相当的周折,因为一旦用户轻易取得中断的调用权,OS的系统级硬件资源保护将会象一张纸一样的脆弱。建议你研究CIH病毒的源代码,但愿你会有意外的收获。
      

  3.   

    知道了怎么调用了,谢谢masterz