.TITLE AUXVER - Show AUX Version .IDENT /1.2/ .ENABL LC ;+ ; ; Free software BY ; Project Software & Development, Inc. ; ; This software is furnished for free and may be used and copied as ; desired. This software or any other copies thereof may be provided or ; otherwise made available to any other person. No title to and ; ownership of the software is hereby transferred or allowed. ; ; The information in this software is subject to change without notice ; and should not be construed as a commitment by PROJECT SOFTWARE ; AND DEVELOPMENT, INC. ; ; PROJECT SOFTWARE assumes no responsibility for the use or reliability ; of this software on any equipment whatsoever. ; ; Project Software & Development, Inc. ; 14 Story St. ; Cambridge, Ma. 02138 ; 617-661-1444 ; ; ; Title: AUXVER.MAC ; Author: Robin Miller ; Date: July 23, 1985 ; ; Description: ; ; Action routine to display the AUX version number. ; ;- .ENABL AMA .NLIST BEX ; Messages: AUXVER: .ASCIZ "AUX Version 1.2 - November 26, 1985 - " AUTHOR: .ASCIZ "by Robin Miller." .EVEN ; Action routine for the "SHOW VERSION" command. SHOVER::MOV #AUXVER,R1 ; Set address of version message. MOV #AUTHOR,R2 ; Set address of author message. CALL WRT2MS ; Display it on the message line. RETURN .END