From: adam Date: Fri, 10 Aug 2007 13:16:42 +0000 (+0100) Subject: fix Lut3 so it checks if output is empty X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=b70b2eb49bddb0c881682f412e577c45f42140da;p=fleet.git fix Lut3 so it checks if output is empty --- diff --git a/ships/Lut3.ship b/ships/Lut3.ship index c6f39cf..5b9479e 100644 --- a/ships/Lut3.ship +++ b/ships/Lut3.ship @@ -43,7 +43,8 @@ under input {\tt in3}. if (box_in1.dataReadyForShip() && box_in2.dataReadyForShip() && box_in3.dataReadyForShip() && - box_inLut.dataReadyForShip()) { + box_inLut.dataReadyForShip() && + box_out.readyForDataFromShip()) { long a = box_in1.removeDataForShip(); long b = box_in2.removeDataForShip(); long c = box_in3.removeDataForShip();