WARNING

Outputs a warning message string.

The .WARNING directive outputs a warning string, but unlike the .ERROR directive it does not halt assembling. May be used in conditional assembly.

Syntax
.WARNING"<string>"
Example
.IFDEF EXPERIMENTAL_FEATURE 
.WARNING "This is not properly tested, use at own risk." 
.ENDIF