PDA

Click to See Complete Forum and Search --> : VC++ and .asm files


ExciteMouse
Jul 12th, 2001, 06:39 PM
can someone show me how to make Microsoft Visual C++ talk to an .ASM file?

right now i just use _asm{} to add assembler to my apps.

if you can point me to a turtorial, or write a small example that would be excellent.

thanks!

ChimpFace9000
Jul 12th, 2001, 06:46 PM
What do you mean by talk? I dont think you can use seperate asm files with just VC++ beacuse i dont think it comes with a seperate assembler.

ExciteMouse
Jul 12th, 2001, 07:02 PM
i found an addin to allow the compiling of asm files to the VC++ compiler.

im just wondering how to include functions you write that are in an ASM file to your project.

like "memcpy" and "strcat" are in .ASM if you step into them.

ChimpFace9000
Jul 12th, 2001, 07:47 PM
What addin?

ExciteMouse
Jul 13th, 2001, 12:41 AM
http://www.furtherdown.net/AsmStudio/

ChimpFace9000
Jul 13th, 2001, 12:49 AM
1. I read that is doesnt work.
2. You need the MASM32 package for it.

ExciteMouse
Jul 13th, 2001, 04:04 AM
you only need an assembler. and masm comes with one, thats why they suggest it. you can use TASM too. all that plugin does is compile the asm files so you dont have to do it separatly.

it works, i can make obj with my asm files. im just trying to figure out how to call functions in .obj written in asm.

ExciteMouse
Jul 13th, 2001, 05:14 AM
nevermind, i finally figured it out. found a good example. Thanks anyways! :)