include debug.inc
Queue_Out String, Value1, Value2
Calls the Queue_Debug_String service to queue the given string for display at a later time.
The assembler generates code for the macro only if the DEBUG constant is defined before including the DEBUG.INC file.
The following example queues a string:
Queue_Out "Element not found"
The following example queues a string containing the value of the EAX register to the debugging device:
Queue_Out "EAX value is #EAX", EAX
Queue_Debug_String