DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T c

⟦a70704764⟧ TextFile

    Length: 916 (0x394)
    Types: TextFile
    Names: »ckmkr2.r«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦3da672b63⟧ »EurOpenD3/misc/kermit.tar.Z« 
        └─⟦126dd3ca0⟧ 
            └─⟦this⟧ »ckmkr2.r« 

TextFile

/* Create the version string for Kermit with the last compi-	*/
/* lation time. Compile this resource definition with Rez.	*/
/* Created: 10/12/87 Matthias Aebi				*/
/* Modifications:						*/

type 'KR09' {
	byte = 39;		/* the string length */
	array CompileTime {
		string;
		byte;		/* month first digit */
		byte;		/* month second digit */
		byte = '/';
		byte;		/* day first digit */
		byte;		/* day second digit */
		byte = '/';
		byte;		/* year first digit */
		byte;		/* year second digit */
		byte = ' ';
		byte;		/* hour first digit */
		byte;		/* hour second digit */
		byte = ':';
		byte;		/* minute first digit */
		byte;		/* minute second digit */
	};
};

resource 'KR09' (0) {
	{	"Kermit Version 0.9(40) Q ",
		($$Month/10)+48,
		($$Month%10)+48,
		($$Day/10)+48,
		($$Day%10)+48,
		($$Year%100/10)+48,
		($$Year%10)+48,
		($$Hour/10)+48,
		($$Hour%10)+48,
		($$Minute/10)+48,
		($$Minute%10)+48
	}
};