source: buchla-68k/orig/GEMDOS/VERDATE.S

Last change on this file was 3ae31e9, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Imported original source code.

  • Property mode set to 100755
File size: 820 bytes
Line 
1* ------------------------------------------------------------------------------
2* verdate.s -- date and version ID message string
3* Version 1 -- 1988-10-28 -- D.N. Lynx Crowe
4* (c) Copyright 1988 -- D.N. Lynx Crowe -- All rights reserved
5* ------------------------------------------------------------------------------
6*
7* Version message string. Updated by 'newver.c' in object form to:
8*
9* 1. Automatically set the correct date and version
10* 2. Avoid the need for a compile or assembly
11*
12* 12 bytes -- 11 ASCII characters and a terminating zero byte
13*
14* char VerDate = "yyyymmdd.vv";
15* 0 byte
16* 0 1
17* 012345678901
18*
19* Use &VerDate[2] for yymmdd.vv format.
20*
21 .data
22*
23 .xdef _VerDate
24*
25_VerDate: dc.b '19881027.01' * Date and version number
26 dc.b 0
27*
28 .end
Note: See TracBrowser for help on using the repository browser.