1. RE: How do I write inline assembly code in Euphoria?
- Posted by "Bernard W. Ryan" <xotron at bluefrognet.net> Oct 21, 2003
- 386 views
Michael: Inline assembly code is not available in Euphoria. You can use assembly code in-directly but not in-line. You might be able to do what you want by using the translator. Bernie
2. RE: How do I write inline assembly code in Euphoria?
- Posted by Brian Broker <bkb at cnw.com> Oct 21, 2003
- 392 views
I'm not an assembly guru so what's the difference between "in-line" and "in-directly"? Bernard W. Ryan wrote: > > > Michael: > Inline assembly code is not available in Euphoria. > You can use assembly code in-directly but not in-line. > You might be able to do what you want by using the translator. > Bernie > >
3. RE: How do I write inline assembly code in Euphoria?
- Posted by "Bernard W. Ryan" <xotron at bluefrognet.net> Oct 21, 2003
- 445 views
>I'm not an assembly guru so what's the difference between "in-line" and >"in-directly"? Brian: in-line means to patch the assembler code directly into program flow at an exact given point when the code is translated from a high-level langauge into its final assembler langauge run-time code. I ment by "in-directly" being able to poke the code into memory and then calling that memory location which is not the samething because you are calling a sub-routine. Bernie