Click to See Complete Forum and Search --> : C++ 4.0 & asm


Nanite
March 24th, 2000, 08:53 PM
Hi

does anyone know how to make assembly procedures availible in MS C++ 4.0?

my problem is that I can't write
__asm
{
}
outside a C procedure/function

however when I include the asm, the project doesn't detect the procedures inside of it and continues to give me link errors.


plz help

thanx

Double_Dutch
March 25th, 2000, 10:26 AM
A forum about an operating system is not exactly the place to ask a question about programming. You could start a new search at http://www.progsource.com/index.html

Ate Rowaan

glussier
March 26th, 2000, 11:38 PM
The procedure inside the asm program have to be made public. Otherwise they will only recognized inside the assembler program, That is no entry points will be generated in the obj modules.