NOP. If you want to set PORTA.0 & PORTA.1 to 1
PORTA=PORTA | 3
where | is a bitwise OR
to CLEAR the same pins
PORTA=PORTA & $FC
NOP. If you want to set PORTA.0 & PORTA.1 to 1
PORTA=PORTA | 3
where | is a bitwise OR
to CLEAR the same pins
PORTA=PORTA & $FC
Steve
It's not a bug, it's a random feature.
There's no problem, only learning opportunities.
Bookmarks