Of cource.Firstly load your image to skyeye,that is to run the following command in skyeye:
target sim
load
Then you will notice your start address, for example ,0x2000
Then type command to set breakpoint in skyeye:
break *0x2000
Then run image in skyeye :
run
Then you can step execute by type command "si" in skyeye. You can look up gdb command help to get more tips about step debug.
Of cource.Firstly load your image to skyeye,that is to run the following command in skyeye:
target sim
load
Then you will notice your start address, for example ,0x2000
Then type command to set breakpoint in skyeye:
break *0x2000
Then run image in skyeye :
run
Then you can step execute by type command "si" in skyeye. You can look up gdb command help to get more tips about step debug.