mirror of
https://github.com/pvvx/RTL00_HelloWorld.git
synced 2024-11-21 12:04:16 +00:00
60 lines
1.2 KiB
Text
60 lines
1.2 KiB
Text
# GDB script for loading ram.bin process
|
|
|
|
#===============================================================================
|
|
#set GDB connection
|
|
set remotetimeout 100000
|
|
target remote :3333
|
|
|
|
#===============================================================================
|
|
#Message display setting
|
|
#disable all messages
|
|
|
|
set verbose off
|
|
set complaints 0
|
|
set confirm off
|
|
set exec-done-display off
|
|
show exec-done-display
|
|
set trace-commands off
|
|
#set debug aix-thread off
|
|
#set debug dwarf2-die 0
|
|
set debug displaced off
|
|
set debug expression 0
|
|
set debug frame 0
|
|
set debug infrun 0
|
|
set debug observer 0
|
|
set debug overload 0
|
|
set debugvarobj 0
|
|
set pagination off
|
|
set print address off
|
|
set print symbol-filename off
|
|
set print symbol off
|
|
set print pretty off
|
|
set print object off
|
|
#set debug notification off
|
|
set debug parser off
|
|
set debug remote 0
|
|
|
|
#===============================================================================
|
|
monitor reset init
|
|
monitor sleep 20
|
|
monitor halt
|
|
#===============================================================================
|
|
#Load flash download file
|
|
file ../flash.elf
|
|
|
|
#boot from ram, igonore loading flash
|
|
set {int}0x40000210=0x8011157
|
|
|
|
#Load the file
|
|
lo
|
|
|
|
#Run to main
|
|
b main
|
|
continue
|
|
clear main
|
|
|
|
|
|
|
|
|
|
|
|
|