X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=contrib%2Fdemo.fleet;h=8f8c514783d8f0033214fcbe2322c760f48e040b;hb=daa7ab3d282553b18a61333a3d122813212939e2;hp=4d8eed380cd94ae7bc397a0e1d6bf7737800d06e;hpb=dedfac6beabb6d57ef4cc9b164cce1ea1b4da1af;p=fleet.git diff --git a/contrib/demo.fleet b/contrib/demo.fleet index 4d8eed3..8f8c514 100644 --- a/contrib/demo.fleet +++ b/contrib/demo.fleet @@ -1,20 +1,14 @@ -#import edu.berkeley.fleet.ships -#ship alu : Alu2 -#ship debug : Debug -#ship command : Command +#ship debug : Debug +#ship iscratch : Iscratch -0: sendto alu.a; -0: sendto alu.op; -42: sendto alu.b; -1: sendto alu.b; -5: sendto alu.b; -alu.a: [*] take, deliver; -alu.b: [*] take, deliver; -alu.op: take; [*] deliver; -debug.data: [*] take, deliver; -alu.out: - [*] nop; - [*r] take, sendto alu.a; - [*r] sendto debug.data; - kill; +BOB: sendto iscratch.inCBD; +iscratch.inCBD: [*] take, deliver; +debug.in: [*] take, deliver; + +BOB: { + 12: sendto debug.in; + 13: sendto debug.in; + 14: sendto debug.in; + BOB: sendto iscratch.inCBD; +}