Accell MPC-68K Series Instrukcja Użytkownika Strona 24

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 45
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 23
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
Przeglądanie stron 23
1 2 ... 19 20 21 22 23 24 25 26 27 28 29 ... 44 45

Komentarze do niniejszej Instrukcji

Brak uwag