Up: GEOS SDK TechDocs | Up | Prev: delassoc ... | Next: elist ...

drivewalk

drivewalk

Examples:

"drivewalk"
Prints the table of drives known to the system.

Prints out all disk drives known to the system, along with their current status.

See Also: diskwalk.

dumpstack

dumpstack [<address>] [<length>]

Examples:

"dumpstack"
dump the stack at SS:SP
"ds ds:si 10"
dump ten words starting at DS:SI

Dump the stack and perform some simple interpretation upon it.

See Also: backtrace.

dwordIsPtr

var dwordIsPtr [(0|1)]

Examples:

"var dwordIsPtr 1"
Tells "print" to print all double-word variables as if they were far pointers (segment:offset).

Controls whether dword (a.k.a. long) variables are printed as 32-bit unsigned integers or untyped far pointers.

See Also: intFormat, print.

dwords

dwords [<address>] [<length>]

Examples:

"dwords"
lists 4 double words at DS:SI
"dwords ds:di 8"
lists 8 double words at DS:DI

Examine memory as a dump of double words (32 bit hex numbers).

See Also: bytes, words, imem, assign.

ec

ec [<args>]

Examples:

"ec"
list the error checking turned on
"ec +vm"
add vmem file structure checking
"ec all"
turn on all error checking (slow)
"ec save none"
save the current error checking and then use none
"ec restore"
use the saved error checking flags

Get or set the error checking level active in the kernel.

See Also: why.

echo

echo [-n] <string>+

Examples:

"echo -n yes?"
Prints "yes?" without a newline.
"echo hi mom"
Prints "hi mom" followed by a newline.

Prints its arguments, separated by spaces.

If the first argument is "-n", no newline is printed after the arguments.

See Also: flush-output.


Up: GEOS SDK TechDocs | Up | Prev: delassoc ... | Next: elist ...