Quote Originally Posted by JD123 View Post
Maybe I'll just move the I2C files into a "Include I2C.bas".
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