Files @ d7f29db22526
Branch filter:

Location: CSY/reowolf/testdata/basic-modules/producer.pdl - annotation

MH
Default handling of attempting a 'get' on a port
#module producer

primitive producer(out<u32> output) {
    sync {
        print("P: Going to send a value!");
        put(output, 1337);
        print("P: I just sent a value!");
    }
    print("P: I am exiting");
}