updated naming convention
[fleet.git] / contrib / icache-demo.fleet
index c0ebc46..c3f26a3 100644 (file)
@@ -1,14 +1,14 @@
 
 // ships required in order to run this code
 #ship debug        : Debug
-#ship icache       : Icache
+#ship iscratch       : Iscratch
 
 // instructions not in any codebag are part of the "root codebag"
 // which is dispatched when the code is loaded
 
 debug.data:   deliver;
-BOB:          sendto icache.cbd;
-icache.cbd:   [*] take, deliver;
+BOB:          sendto iscratch.cbd;
+iscratch.cbd:   [*] take, deliver;
 debug.data:   [*] take, deliver;
 
 
@@ -20,6 +20,6 @@ BOB: {
   12:           sendto debug.data;
   13:           sendto debug.data;
   14:           sendto debug.data;
-  BOB:          sendto icache.cbd;
+  BOB:          sendto iscratch.cbd;
 }