BKPT_INST is supposed to be a breakpoint, not 0.

This commit is contained in:
Jake Burkholder 2003-06-07 18:24:37 +00:00
parent 1030d2ba0b
commit 9fabb18288
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=115970

View file

@ -44,7 +44,7 @@ extern db_regs_t ddb_regs;
#define PC_REGS(regs) ((db_addr_t)(regs)->tf_tpc) #define PC_REGS(regs) ((db_addr_t)(regs)->tf_tpc)
#define BKPT_INST (0) #define BKPT_INST (0x91d03001)
#define BKPT_SIZE (4) #define BKPT_SIZE (4)
#define BKPT_SET(inst) (BKPT_INST) #define BKPT_SET(inst) (BKPT_INST)