.title Compiler Version .ident /860105/ ; ; Returns the address of a string indicating the version of the ; compiler. ; ; type ; string = array [1..80] of char; ; stringptr = @string; ; ; function version:stringptr; external; ; .psect version:: mov #vermsg,2(sp) return ; .psect msg,d vermsg: .asciz /V1.6iec6 January 1986/ ; .end