This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to use ASM function have meny parameter

I have a problem.
Assembler function call from C.
Then Assembler function have meny parameter.

How to use assembler code?

sorry .

Parents
  • The other thread is C function call from assembler.

    This thread is assembler function call from C.

    The answer is almost the same: The C compiler does not know that the assember function expects, so the assembler function has to receive data in the same way as a C function.

    Look at the disassembly for how a C function would receive the same amount and types of parameters...

Reply
  • The other thread is C function call from assembler.

    This thread is assembler function call from C.

    The answer is almost the same: The C compiler does not know that the assember function expects, so the assembler function has to receive data in the same way as a C function.

    Look at the disassembly for how a C function would receive the same amount and types of parameters...

Children