mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-10-31 11:07:44 +00:00
135cfc6169
- 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
35 lines
576 B
Plaintext
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
|
|
};
|