Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MMX commands

Status
Not open for further replies.

Diksi

Programmer
Aug 5, 2002
5
GR
Embedded assembler of C++ Builder does not recognize MMX comands. (If I use __asm {...}). How can I use them?
 
I don't have C++ Builder but it may have a similar feature to the IDE I'm using. It is basically the use of _emit. Supposing I wish to generate the sequence 0x4D 0x4D 0x0x58

#define MMX __asm _emit 0x4d __asm _emit 0x4d __asm _emit 0x4d

...
__asm {
MMX
}

The keywords to look up in the help are pseudo instruction and possibly DB but I wouldn't recommend the latter as it will probably pull up all the databas stuff.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top