bt

Tests a block of memory for a pattern.
Syntax
bt [/bwl] <start> <end> <value>
Parameters
<start>
Specifies the address of the start of the memory block to be tested.
<end>
Specifies the address of the end of memory block to be tested. If the end value is less than the start value, bt will copy the memory from the starting location, for <end> bytes.
<value>
Specifies the value to test for.
Options
/b
Specify 8 bit byte operation.
/w
Specify 16 bit word operation.
/l
Specify 32 bit long operation.
Example
To test the block of memory from memory location 0x0100 through memory location 0x0200 for the value 0x0300 in hexidecimal radix, in word operation, type the following command:

bt/w 100 200 300

Notes
Returns memory locations and contents for locations that do not contain <value>. If the /b, /w or /l option is not specified, bt will use the default size of the PDE environment, which can be set using the size command.

bt uses the default radix of the PDE environment, which can be set using the radix command.

Back


Valid HTML 4.01 Comments or Questions? send email to : languard (at) pix (dot) net
Last Updated: $Date: 2003/01/25 04:09:04 $