| View previous topic :: View next topic |
| Author |
Message |
smartdude80 Guest
|
Posted: Sat Nov 05, 2005 6:55 pm Post subject: Using inline assembly in c++ builder |
|
|
How is inline assembly done and whats involved?
|
|
| Back to top |
|
 |
Michel Leunen Guest
|
Posted: Sat Nov 05, 2005 8:02 pm Post subject: Re: Using inline assembly in c++ builder |
|
|
smartdude80 wrote:
| Quote: | How is inline assembly done and whats involved?
|
If you have BCB pro or Enterprise, TASM is shipped with it. Just inline
your assembler's code using the asm {...} keyword.
Michel
--
----------------------------------------
Michel Leunen
mailto: see my homepage.
C++Builder, BCC5.5.1 Web site:
http://www.leunen.com/
----------------------------------------
|
|
| Back to top |
|
 |
smartdude80 Guest
|
Posted: Sat Nov 05, 2005 8:28 pm Post subject: Re: Using inline assembly in c++ builder |
|
|
| Quote: | If you have BCB pro or Enterprise, TASM is shipped with it. Just inline
your assembler's code using the asm {...} keyword.
Michel
|
That explains that. Thanks.
|
|
| Back to top |
|
 |
Remy Lebeau (TeamB) Guest
|
Posted: Sun Nov 06, 2005 7:20 pm Post subject: Re: Using inline assembly in c++ builder |
|
|
"Michel Leunen" <nospam (AT) noreply (DOT) please> wrote
| Quote: | Just inline your assembler's code using the asm {...} keyword.
|
Also, use '#pragma inline' to disable the warning about the compiler
restarting when it encounters inlined assembly.
Gambit
|
|
| Back to top |
|
 |
|