LSB - The Least Significant Bit
The Least Significant Bit(LSB) is the far right bit of a byte that represents a value of 1. It determines if the value is odd or even.
Some bitfield commands move values into the LSB.
Examples
Example 1
Task1()
{
Name="Dipswitch checker" //Branches on the lowest dipswitch set
LDA ^59,0 //Get the dipswitch port
SHR //Move Dipswitch 1 into the carry flag
BRC DipSwitch1Set //If carry flag is set branch.
SHR //Move next Dipswitch into the carry flag
BRC DipSwitch2Set //If carry flag is set branch.
...
}