	FREQUENTLY USED sdb COMMANDS
	
	o	w - Displays a 10 line window about the current line
	
	o	[proc:]var/format  - Examine the contents of variable var.  
	
		* Default format is derived from the variable type.  
	
		* Formats are similar to those used in C.
	
		* proc: The name of the function in which the local var resides.
	
			- By default, the current function is used.
	
	o	var!value -	Deposit value into var.
	
	o	proc:b - Set a breakpoint on function proc.
	
	o	# - Set the current line.  
	
		* This will NOT affect the next line to be executed.
	
	o	p - Display the current line.
	
		* This is NOT necessarily the next line to be executed.
	
	o	#b - Set a breakpoint on line number #.
	
	o	b - Set a breakpoint on the current line.
	
	o	B - List all breakpoints.
	
	o	D - Delete all breakpoints.
	
	o	#d - Delete breakpoint on line number #.
	
	o	proc:d - Delete breakpoint on function proc.
	
	o	p - Display the current line.
	
	o	s - Step to next line to be executed, stepping into function calls.
	
	o	S - Step to next line, stepping over function calls.
	
	o	r [args] - Re/start process execution.
	
		* An optional list of arguments may be supplied.
	
		* If no args are supplied, each restart will take on any 
		  previously supplied argument list.
	
	o	R - Re/start process with no arguments.
	
	o	c - continue execution to next breakpoint
	
	o	z - Displays the current line with the following nine lines.
	
		* Resets the current line to be the last line displayed.
	
