diff options
author | Gopi Kumar Bulusu <gopi@sankhya.com> | 2025-09-10 10:46:28 +0530 |
---|---|---|
committer | Gopi Kumar Bulusu <gopi@sankhya.com> | 2025-09-10 10:46:28 +0530 |
commit | 2dda928eb2f2764adaed515f513227cea8d16564 (patch) | |
tree | 1d195f480c238e4449f9f8c9286ca0dede331b8f /gdb | |
parent | 6038b1125839ee73393bce19339689824f8cf3f1 (diff) | |
download | binutils-2dda928eb2f2764adaed515f513227cea8d16564.zip binutils-2dda928eb2f2764adaed515f513227cea8d16564.tar.gz binutils-2dda928eb2f2764adaed515f513227cea8d16564.tar.bz2 |
MicroBlaze: Update software breakpoint machine code as per MicroBlaze ISA
This patch updates breakpoint instruction machine code to be inline
with the specification in MicroBlaze ISA [1]
* gdb/microblaze-tdep.h : Update MICROBLAZE_BREAKPOINT
[1] https://docs.amd.com/r/en-US/ug984-vivado-microblaze-ref/brki
Signed-off-by: David Holsgrove <david.holsgrove@petalogix.com>
Signed-off-by: Nathan Rossi <nathan.rossi@petalogix.com>
Signed-off-by: Mahesh Bodapati <mbodapat@xilinx.com>
Signed-off-by: Gopi Kumar Bulusu <gopi@sankhya.com>
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/microblaze-tdep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/microblaze-tdep.h b/gdb/microblaze-tdep.h index b2fb5e7..852c9eb 100644 --- a/gdb/microblaze-tdep.h +++ b/gdb/microblaze-tdep.h @@ -118,6 +118,6 @@ struct microblaze_frame_cache /* MICROBLAZE_BREAKPOINT defines the breakpoint that should be used. Only used for native debugging. */ -#define MICROBLAZE_BREAKPOINT {0xb9, 0xcc, 0x00, 0x60} +#define MICROBLAZE_BREAKPOINT {0xba, 0x0c, 0x00, 0x18} #endif /* GDB_MICROBLAZE_TDEP_H */ |