update to new AM37 syntax
[fleet.git] / tests / torpedo / basic-torpedo.test
index 38346da..6181121 100644 (file)
@@ -4,14 +4,15 @@
 #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;
   tail;
 
 fifo.out:
-  wait;
-  notify debug.in:i;
+  recv token;
+  send token to debug.in:i;