(380 . 11)(380 . 11)
5 -- Multiply, give bottom and top halves
6 when '*' =>
7 Want(2);
8 -- Ch5: slow and simple 'Egyptological' method:
9 FZ_Mul_Egyptian(X => Stack(SP - 1),
10 Y => Stack(SP),
11 XY_Lo => Stack(SP - 1),
12 XY_Hi => Stack(SP));
13 -- Ch9: Comba's algorithm
14 FZ_Mul_Comba(X => Stack(SP - 1),
15 Y => Stack(SP),
16 XY_Lo => Stack(SP - 1),
17 XY_Hi => Stack(SP));
18
19 -- Modular Multiplication
20 when 'M' =>