LabSmith HVS448 User Manual page 41

High voltage sequencer
Hide thumbs Also See for HVS448:
Table of Contents

Advertisement

X and Y Register Comparisons
X<Y?; etc.
Usage:
These instructions test the values of the numbers in X and Y:
X<Y?:
X <=Y?:
X= Y?:
X!=Y?:
X>=Y?:
X>Y?:
If the test is true, the next instruction is executed; if false, the next instruction is skipped.
Example:
10
16
X=Y?
Goto Initialize
X>Y?
Goto Inject ; Executes this instruction
X is less than Y?
X is less than or equal to Y?
X is equal to Y?
X is not equal to Y?
X is greater than or equal to Y?
X is greater than Y?
; X contains 10
; X contains 16, Y contains 10
; False
; Does not execute this instruction
; True
41

Advertisement

Table of Contents
loading

Table of Contents