// Miscellaneous stuff that might and might not be put in an included file.

// This should be included by files describing modules that are to
// be simulated together.
`timescale 1ns/1ns

// No point in using handy because linker would find it anyway.
module handy(a,b,x);
   input a,b;
   output x;

   // blah blah
   
endmodule

   
// Possibly useful

`define BUSWIDTH 16