run all tests (including ships directory), add #skip tests where missing
[fleet.git] / ships / Halt.ship
1 ship: Halt
2
3 == Ports ===========================================================
4 token in: in
5
6 == Constants ========================================================
7
8 == TeX ==============================================================
9
10 == Fleeterpreter ====================================================
11 public void service() {
12   if (!box_in.dataReadyForShip()) return;
13   box_in.removeDataForShip();
14   // FIXME
15   //  ((Interpreter)getInterpreter()).halt = true;
16   //  Log.println(ANSI.yellow("    HALT: ====== halt ship got a token; halting the fleet ======"));
17 }
18
19 == FleetSim ==============================================================
20
21 == FPGA ==============================================================
22 // not implemented FIXME
23
24 == Test ==============================================================================
25 #skip
26
27 == Contributors =========================================================
28 Adam Megacz <megacz@cs.berkeley.edu>
29