SX Embedded Controller Instruction

MOV !port,#lit

Description: Move literal into port's TRIS
Operation: !PORT = W = lit
Flags affected: none
Registers affected: W !PORT
Sources referenced: lit
Cycles: 2
Opcode:
Actually compiles to: mov W, #lit; mov !port,W
Microchip PIC syntax: MOVLW lit; TRIS port (port=5 to 7)
Notes: