SourcePoint AMD Help

Table of Contents

use

Set the default address size used by the asm command.

Syntax

use [={expr | use16 | use32}]

ย 

Where:

expr

specifies a number or an expression that must evaluate to 16t or 32t. The default is 16t

use16

indicates 16-bit addressing.

use32

indicates 32-bit addressing.

Discussion

Use the use control variable to set the default address size used by the asm command. Entering the control variable without selecting an option displays the current setting.

When set to use16 (the default) the debug tool interprets assembler addresses as 16-bit. When set to use32, the debug tool interprets assembler addresses as 32-bit.

Note: The use control variable is identical in function to the asmmode control variable.

Example

To set the use control variable to interpret addresses as 32-bit:

Command input:

use = use32

Related Topics