blob: d1c539b1fa4fa43a689115b313cbe2c8c8a84c12 [file] [log] [blame]
/*
* ======== hello/mod/Talker.xdc ========
*/
/*! Our first module */
module Talker {
/*! What to say */
config String text = "Hello World";
/*! How many times */
config Int count = 1;
/*! Say it */
Void print();
}