|  | @@ -15,6 +15,7 @@ static void gdb_symbol_line ( void ) {
 | 
		
	
		
			
			| 15 | 15 |  	printf ( "Commands to start up gdb:\n\n" );
 | 
		
	
		
			
			| 16 | 16 |  	printf ( "gdb\n" );
 | 
		
	
		
			
			| 17 | 17 |  	printf ( "target remote localhost:1234\n" );
 | 
		
	
		
			
			|  | 18 | +	printf ( "set confirm off\n" );
 | 
		
	
		
			
			| 18 | 19 |  	printf ( "add-symbol-file symbols %#lx", virt_to_phys ( __text ) );
 | 
		
	
		
			
			| 19 | 20 |  	printf ( " -s .rodata %#lx", virt_to_phys ( __rodata ) );
 | 
		
	
		
			
			| 20 | 21 |  	printf ( " -s .data %#lx", virt_to_phys ( __data ) );
 | 
		
	
	
		
			
			|  | @@ -22,6 +23,8 @@ static void gdb_symbol_line ( void ) {
 | 
		
	
		
			
			| 22 | 23 |  	printf ( " -s .text16 %#x", ( ( rm_cs << 4 ) + (int)__text16 ) );
 | 
		
	
		
			
			| 23 | 24 |  	printf ( " -s .data16 %#x", ( ( rm_ds << 4 ) + (int)__data16 ) );
 | 
		
	
		
			
			| 24 | 25 |  	printf ( "\n" );
 | 
		
	
		
			
			|  | 26 | +	printf ( "add-symbol-file symbols 0\n" );
 | 
		
	
		
			
			|  | 27 | +	printf ( "set confirm on\n" );
 | 
		
	
		
			
			| 25 | 28 |  	getkey();
 | 
		
	
		
			
			| 26 | 29 |  }
 | 
		
	
		
			
			| 27 | 30 |  
 |