Can anyone point me to a good tutorial on / explain the basics of writing functions in assembly and then linking them into a c++ program?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
closed as not constructive by Bo Persson, Rory McCrossan, Matt Handy, Widor, j0k Nov 28 '12 at 11:48
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Here are couple of articles you can use: http://courses.engr.illinois.edu/ece390/books/labmanual/c-prog-mixing.html http://lavernasbrute.blogspot.com/2010/02/calling-assembly-functions-in-c.html just google 'assembly functions in C'. |
|||
|
|
|
|||||||||||
|
|
Check this one, it should be helpful |
||||
|
|
You can use inline ASM, but may not support some instruction. But enough at all., As you know, some CRT function is implemented by inline ASM.
|
|||
|