Example

  HIGH Pin

Function
Make the specified Pin an output and high (1).

Explanation
The HIGH instruction makes the specified Pin an output, and then sets its value to 1 (Vdd). For example:

  HIGH RA.3

Does the same thing as:

  OUTPUT RA.3
  RA.3 = 1

Using the HIGH instruction is more convenient in this case.


Related instructions: LOW, OUTPUT, and TOGGLE