News |
Coming soon! 9060 Blade. |
|
NOP |
Command:
Syntax:
Status Flags Effected: |
NOP NOP NONE
|
NOP literally means "No Operation" and instructs the
microcontroller to do "nothing". This command is used to simply kill
time without changing any of the MCU's current state. One example of
using NOP is when a bit on one of the MCU's ports has to be left ON for
a specific period of time, but the time required is so short that a
loop isn't required. Putting in a few NOP commands in between turnin
the bit on and turning the bit off will generate the required on time
without inserting more code than is required.
|
|