Level 1
mrnoone
Level 1
Jul 31, 2022
12:26 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
1 Solution
Level 4
Rodrigo_RT
Level 4
Aug 01, 2022
09:07 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Hello Mrnoone.
XMC has the function asm("nop"). you can use it in two ways
__asm("nop");
or
__NOP();
Both ways will work equally.
Yours sincerely
2 Replies
Level 4
Rodrigo_RT
Level 4
Aug 01, 2022
09:07 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Hello Mrnoone.
XMC has the function asm("nop"). you can use it in two ways
__asm("nop");
or
__NOP();
Both ways will work equally.
Yours sincerely
Level 1
mrnoone
Level 1
Aug 01, 2022
10:23 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Many Thanks @Rodrigo_RT .