update to new AM37 syntax
[fleet.git] / tests / torpedo / epilogue-fifo.test
index a438550..0042536 100644 (file)
@@ -5,17 +5,18 @@
 #ship fifo  : Fifo
 
 debug.in:
-  [L] nop;
-  notify fifo.out;
-  [I] [*] wait;
-  [+] literal 20;
-  [+] deliver;
+  [Rq] nop;
+  send token to fifo.out;
+  set ilc=*;
+  [T] recv token;
+  [*] set word= 20;
+  [*] deliver;
   deliver;
   tail;
-  [+] literal 40;
-  [+] deliver;
+  [*] set word= 40;
+  [*] deliver;
 
 fifo.out:
-  wait;
-  notify debug.in:i;
+  recv token;
+  send token to debug.in:i;