3-6SectionProgramming Console Operations
108
2. Press the TR Key to switch to ASCII display. The display will toggle between
hexadecimal and ASCII displays each time the TR Key is pressed.
TR
D0000
”AB”
TR
D0000
4142
3-6-28 Displaying the Cycle Time
This operation is used to display the current average cycle time (scan time).
It is possible only in RUN or MONITOR mode while the program is being
executed.
RUN MONITOR PROGRAM
OK OK No
1, 2, 3...
1. Bring up the initial display.
2. Press the MONTR Key to display the cycle time.
MONTR
00000SCAN TIME
012.1MS
There might be differences in displayed values when the MONTR Key is
pressed repeatedly. These differences are caused by changing execution
conditions.
3-6-29 Inputting Signed Binary Data Using Decimal Values
Although calculations for signed binary data use hexadecimal expressions,
inputs from the Programming Console or SSS can be done using decimal inputs
and mnemonics for the instructions. Examples are shown below for the Pro-
gramming Console. Refer to the
SSS Operation Manual: C-series PCs
for
details on using the SSS.
Input Instructions Only 16-bit operands can be input for the following instructions: NEG(––),
ADB(50), SBB(51), MBS(––), and DBS(––).
Example 1: Adding 12345 to an Operand Using BIN(50)
CLR
00000
FUN
00000
FUN (? ?)
F
5
A
0
00000
ADB (50)
WRITE
00000 ADB DATA A
000
CONT
#
00000 ADB DATA A
#0000
SHIFT TR
00000 ADB DATA A
#+00000
B
1
C
2
D
3
E
4
F
5
00000 ADB DATA A
#+12345
SHIFT TR
00000 ADB DATA A
#3039
WRITE
00000 ADB DATA B
000