add Alu3 ship and tests
[fleet.git] / ships / Alu2.ship
index 013748e..ae0a019 100644 (file)
@@ -22,8 +22,6 @@ FIXME: implement all the link bit stuff
 
 Use carry-in bit to create a selector?  Perhaps a waste of an ALU.
 
-Carry-save / carry completion stuff.
-
 Flags: zero, negative, overflow, ?
 
 move elsewhere:
@@ -43,7 +41,7 @@ public void service() {
   if (box_in1.dataReadyForShip() &&
       box_in2.dataReadyForShip() &&
       box_inOp.dataReadyForShip() &&
-      box_out.readyForItemFromShip()) {
+      box_out.readyForDataFromShip()) {
       long a      = box_in1.removeDataForShip();
       long b      = box_in2.removeDataForShip();
       long op     = box_inOp.removeDataForShip();