update test cases to am33
[fleet.git] / ships / Fifo.ship
index 875565e..bcaec4b 100644 (file)
@@ -9,7 +9,7 @@ data  out:  out
 
 == TeX ==============================================================
 
-The {\tt Fifo} ship is a simple fifo.  Values delivered to the {\tt
+The {\tt Fifo} ship is a simple fifo.  Word-sized delivered to the {\tt
 in} port are enqueued into the fifo, and values which arrive at the
 end of the fifo are provided to the {\tt out} port.
 
@@ -41,10 +41,17 @@ debug.in:   [*] take, deliver;
 fifo.in:
   literal 9;
   deliver;
-  [100] take, deliver;
+  load repeat counter with 63;
+  take, deliver;
+  load repeat counter with 37;
+  take, deliver;
+
 fifo.out:
-  [99] take, sendto fifo.in;
-  [1]  take, sendto debug.in;
+  load repeat counter with 63;
+  take, sendto fifo.in;
+  load repeat counter with 36;
+  take, sendto fifo.in;
+  take, sendto debug.in;