include debug.inc Queue_Out String, Value1, Value2 |
The Queue_Out macro calls the Queue_Debug_String service to queue the given string for display at a later time.
String
Specifies the string to display. The string must be enclosed in double quotation marks. The string can contain register placeholders in the same forms as described for the Queue_Debug_String service.
Value1
Specifies a 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
Specifies a value to queue with the string. If the string contains the #EBX or ?EBX placeholder, this value is used when the string is displayed.
This macro has no return value.
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 AX register to the debugging device:
Queue_Out "AX value is #AX", AX