內嵌asm代碼的文件格式爲xyz.c我正在使用Visual C++ 2010 Express IDE。標題中提到了錯誤。任何幫助表示讚賞!謝謝!如何解決錯誤C2059:語法錯誤:Visual C++ 2010 Express中的'__asm'
我的代碼大致看起來像這樣。
#include "xyz.h"
/*
; Multi-line comments
;
*/
__asm{
Assembly code
}
/*
; Multi-line comments
;
*/
.
.
.
__asm{
Assembly code
}
/*
; Multi-line comments
;
*/
__asm{
Assembly code
}
您是否正在編譯x64? – Mysticial 2012-07-20 03:31:26
我收回它。 VS Express沒有64位編譯器。 – Mysticial 2012-07-20 03:36:55
編譯器的VS Express系列是有限的,也許它只是不支持'__asm'擴展? – 2012-07-20 06:07:40