Queue_Out

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.

String
String to display, enclosed in double quotation marks. The string can contain register placeholders in the same forms as described for the Queue_Debug_String service.
Value1
Value to queue with the string. If the string contains the #EAX or ?EAX placeholder, this value is used when the string is displayed.
Value2
Value to queue with the string. If the string contains the #EBX or ?EBX placeholder, this value is used when the string is displayed.

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
 

See Also

Queue_Debug_String