USER MANUAL APS 6.0
Creating and Editing Ladder Program Files
6–25
Example
You are prompted to enter the second parameter of an EQU instruction and you wish
to enter a constant. Constants are displayed in the Integer radix. Using the value
48, this value can be entered using any one of the following methods:
• &H0030 (&H specifies the hexadecimal radix)
• &B0000000000110000 (&B specifies the binary radix)
• &O60 (&O specifies the octal radix)
• &A0 (&A specifies the ASCII radix)
• &D0048 (&D specifies the BCD radix)
• &N48 (&N specifies the Integer radix)
In this case, &N is not required because the Integer is the default radix for
constants. Y
ou would enter 48.