We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
I had create a function that use __asm{ NOP NOP NOP NOP}; which it's work correctly on older version (about 4.0x). but It's problem in 4.2x version like this ": error: #1083: Inline assembler syntax error"
Does anyone has new Inline Assembler Syntax ?? Please told me...
Thank you
Thank you for your reply I used to try by follow your link. But I has same error....
__asm("NOP NOP NOP NOP"); and __asm{NOP NOP NOP NOP}
Does anyone has anyidea??
Hello Tihnov Poo,
instead of using inline assembler you can use the inrtinsic __nop().
__nop();__nop();__nop();__nop();
Best Regards, Martin Guenther
Thank you It's work...
but I don't know why new version isn't support inline assembler old version..
thank you