Quote Originally Posted by skimask View Post
You could turn all those multi-line @ NOP's into macros.
Put this near the top of your code:
Code:
ASM
nop5 macro
     NOP
     NOP
     NOP
     NOP
     NOP
    endm
ENDASM
To use it:
Code:
@ nop5
That would be 9 Tcy, right?