1load_lib gdb.exp 2load_lib "../config/monitor.exp" 3 4proc gdb_emclaptop_command { command } { 5 global board_info; 6 set tname [board_info target name]; 7 8 if ![info exists board_info($tname,m68k_connected)] { 9 m68k_emc_board_connect target; 10 } 11 # This is about all we can do for now. *sigh* 12 set dos_host [board_info target dos_host]; 13 14 remote_send $dos_host "${command}\n"; 15 #remote_expect $dos_host { 16 #} 17} 18