gno/sys/sim/sim.rez
gdr-ftp 135cfc6169 sim.asm:
- did a 'setcom 60' to catch the weird formatting
	- created a dummy routine to go in the .root file.
	- this file didn't originally compile due to unresolved
	  references to ExtVect2.  Looking at the source it appears that
	  someone had started to modify it to allow a second interrupt
	  vector, but handn't finished the job.  I commented out the
	  initialization and checking of ExtVect2.
simlib.asm:
	- did a 'setcom 60' to catch the weird formatting
	- created a dummy routine to go in the .root file.
Makefile:
	- complete overhaul to fit into the GNO base builds
1999-02-08 05:53:38 +00:00

35 lines
576 B
Plaintext

/*
* Resources for version and comment
*
* $Id: sim.rez,v 1.1 1999/02/08 05:53:38 gdr-ftp Exp $
*/
#define PROG "sim"
#define DESC "Serial Interrupt Manager\n"
#include "Types.rez"
#include "builddate.rez"
/*
* Version
*/
resource rVersion (1, purgeable3) {
{ 1, 0, 0, /* Version */
release, /* development|alpha|beta|final|release */
0 }, /* non-final release number */
verUS, /* Country */
PROG, /* Program name */
DESC
BUILD_DATE
};
/*
* Comment
*/
resource rComment (1, purgeable3) {
PROG "\n"
DESC
BUILD_DATE
};