.TIME

Directive that stores the ASCII representation of the current local time in memory. The format is 24 hour "HH*MM*SS" where * is 1 of 3 options. The string is not null terminated.

Syntax:

[<label>[:]]     .TIME    ; Uses default seperator HH:MM:SS 
[<label>[:]]     .TIME 0  ; Uses no seperator HHMMSS 
[<label>[:]]     .TIME '.'; Uses custom seperator HH.MM.SS 

Example:

alpha:    .TIME     ; will generate $31, $36, $3A, $34, $32, $3A, $31, $37 for 4:42:17 PM.