C++ 4.0 & asm
Results 1 to 3 of 3

Thread: C++ 4.0 & asm

  1. #1
    Join Date
    Mar 2000
    Location
    Toronto, Ontario, Canada
    Posts
    1

    C++ 4.0 & asm

    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


  2. #2
    Join Date
    Mar 2000
    Location
    Amsterdam, NL
    Posts
    168
    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

  3. #3
    Join Date
    Apr 1999
    Posts
    1,006
    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.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •