source: buchla-68k/ram/verdate.s@ 60288f5

Last change on this file since 60288f5 was 6dc5ea7, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Linked RAM without errors.

  • Property mode set to 100644
File size: 776 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: .asciz "19881027.01" | Date and version number
26
27 .end
Note: See TracBrowser for help on using the repository browser.