System information
Console Commands
MicroVax 3100 Models 88/98 User Information
A-17
{start_address} A longword address that specifies the first location subject to
the search. This address can be an actual address or a
symbolic address. If no address is specified, + is assumed.
{pattern} The target data.
[{mask}] A mask of the bits that the comparison checks for.
Examples:
>>> DEP /P/L/N:1000 0 0 ! Clear some memory.
>>>
>>> DEP 300 12345678 ! Deposit some search data.
>>> DEP 401 12345678
>>> DEP 502 87654321
>>>
>>> SEARCH /N:1000 /ST:1 0 12345678 ! Search for all occurrences
P 00000300 12345678 ! of 12345678 on any byte
P 00000401 12345678 ! boundary. Then try
>>> SEARCH /N:1000 0 12345678 ! longword boundaries.
P 00000300 12345678 ! Search for all nonzero
>>> SEARCH /N:1000 /NOT 0 0 ! longwords.
P 00000300 12345678
P 00000400 34567800
P 00000404 00000012
P 00000500 43210000
P 00000504 00008765
>>> SEARCH /N:1000 /ST:1 0 1 FFFFFFFE ! Search for odd-numbered
! longwords on any boundary.
P 00000502 87654321
P 00000503 00876543
P 00000504 00008765
P 00000505 00000087
>>> SEARCH /N:1000 /B 0 12 ! Search for all occurrences
P 00000303 12 ! of the byte 12.
P 00000404 12
>>> SEARCH /N:1000 /ST:1 /w 0 FE11 ! Search for all words that
>>> ! could be interpreted as
>>> ! a spin (10$: brb 10$).
>>> ! Note that none were found.