User`s manual
Table Of Contents
- MPC-684 family
- The feature of the MPC-684
- Program development environment
- How to connect
- Input commands
- I/O check
- How to input program
- Edit of a program
- How to program save to the PC, load from the PC
- I/O control
- Variable, Array variable, String variable, Memory I/O
- Calculation
- Pulse generation
- Multi-task
- RS-232 communication
- Debugging
- Use touch panel
- Command List

Calculation
+ addition A=B+C
- substruction A=B-C
* multiplication A=B*C
/ division A=B/C
% surplus A=B%C
& logical multiplication (AND) A=B&C
| logical addition (OR) A=B|C
¥ exclusive-OR (XOR) A=B¥C
The integers are 4 bytes in value. The final value is always truncated to it’s decimal
point.
10 A=5
20 B=A/2
30 PRINT B
RUN
2
The calculation below is in accordance with general arithmetic operation.
10 A=2 : B=3 : C=4
20 D=A*(B+C)
30 PRINT D
RUN
14
You can carry out floating-point operations and trigonometrical function operations
using a coprocessor (option).
24