Assambler and Visual C++ 2002

Started by
2 comments, last by idloco 19 years, 10 months ago
How can i "mix" and Assambler program with an VC++ program. I mean like tell the linker that "link" and existent obj (ASM) and mix it the the rest of the program (C++). (in Visual C++ 2002)
------------------------------------ IDLoco Game Studios
Advertisement
VC++ incorporates assembly right into C++, so stick your assembly code in like this

__asm{    //your code here}
My fellow Americans I have just signed legislation that outlaws Russia forever. Bombing will commence in five minutes.
thanks... and how can i get info from the video segment,
Like ask for an ( x, y ) in the screen?
------------------------------------ IDLoco Game Studios
It sounds like your after an 16-bit interrupt. You should download Masm and 16-bit link.exe [free] instead of using Visual C++. First though, I''d investigate a 32-bit alternative.

This topic is closed to new replies.

Advertisement