发信人: ikoo()
整理人: simonshium(1999-06-22 21:14:29), 站内信件
|
【 在 snow (FeiFei) 的大作中提到: 】 : 请问各位高手,VC++能处理ASM的程序吗? : 如果要将VC写的界面和ASM的程序做连接,该怎么做? : 另外除了BC5.0的TASM外有什么处理32位ASM程序的编译器吗?
Absolutely VC can. You can either write inline asm program lines with keyword _asm { } or something like that. or you can write a independent module all by asm grammer, then compile it to obj module and then link it with other modules. you had better use CL command line to generate a asm framework from a C source file framework and the add what you want. In most case, this is the best way.
-- ※ 来源:.广州网易 BBS bbs.nease.net.[FROM: 202.96.133.144]
|
|