add Stack ship and tests
[fleet.git] / tests / alu2 / simple-alu2-test.fleet
1 // expected output
2 #ship debug : Debug
3 #ship alu   : Alu2
4
5 #expect 17
6 #expect 1
7 #expect 8
8 #expect 9
9
10 debug.in:   [*] take, deliver;
11 9:          sendto alu.in1;
12 9:          sendto alu.in1;
13 9:          sendto alu.in1;
14 9:          sendto alu.in1;
15 8:          sendto alu.in2;
16 8:          sendto alu.in2;
17 8:          sendto alu.in2;
18 8:          sendto alu.in2;
19
20 Alu2.ADD:   sendto alu.inOp;
21 Alu2.SUB:   sendto alu.inOp;
22 Alu2.MIN:   sendto alu.inOp;
23 Alu2.MAX:   sendto alu.inOp;
24
25 alu.in1:    [*] take, deliver;
26 alu.in2:    [*] take, deliver;
27 alu.inOp:   [*] take, deliver;
28 alu.out:    [*] take, sendto debug.in;