Blame view

Modif/epsilon-master/quiz/gdb_script.gdb 215 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  # Let's connect to OpenOCD
  target remote localhost:3333
  
  # Load our executable
  load test.elf
  
  # Tell OpenOCD to reset and halt
  monitor reset halt
  
  # Add a breakpoint
  break debugger
  
  # Launch the test suite
  continue