- fixed bug that could result in register corruption on arm920t targets
git-svn-id: svn://svn.berlios.de/openocd/trunk@89 
b42882b7-edfa-0310-969c-
e2dbd0fdcd60
  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  ***************************************************************************/
 
-#define OPENOCD_VERSION "Open On-Chip Debugger (2006-08-17 17:00 CEST)"
+#define OPENOCD_VERSION "Open On-Chip Debugger (2006-08-20 17:00 CEST)"
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 
 
        DEBUG("opcode: %8.8x, value: %8.8x, address: %8.8x", opcode, value, address);
 
+       ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, armv4_5->core_mode, 0).dirty = 1;
+       ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, armv4_5->core_mode, 1).dirty = 1;
+       
        return ERROR_OK;
 }
 
 
                                        break;
                        }
                }
+               else
+               {
+                       command_print(cmd_ctx, "breakpoint added at address 0x%8.8x", strtoul(args[0], NULL, 0));
+               }
+       }
+       else
+       {
+               command_print(cmd_ctx, "usage: bp <address> <length> ['hw']");
        }
 
        return ERROR_OK;