Browse Source

target: rename cortex_m3.[ch] to cortex_m.[ch]

This rename is in preparation for cortex_m4 support.

Change-Id: Ic08c298ec6ed2aabc2c39db67191f68b3a51f550
Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk>
Reviewed-on: http://openocd.zylin.com/147
Tested-by: jenkins
Reviewed-by: Øyvind Harboe <oyvindharboe@gmail.com>
tags/v0.6.0-rc1
Spencer Oliver 12 years ago
committed by Øyvind Harboe
parent
commit
3f8f583964
4 changed files with 4 additions and 4 deletions
  1. +2
    -2
      src/target/Makefile.am
  2. +1
    -1
      src/target/arm_semihosting.c
  3. +1
    -1
      src/target/cortex_m.c
  4. +0
    -0
      src/target/cortex_m.h

+ 2
- 2
src/target/Makefile.am View File

@@ -73,7 +73,7 @@ ARMV6_SRC = \


ARMV7_SRC = \ ARMV7_SRC = \
armv7m.c \ armv7m.c \
cortex_m3.c \
cortex_m.c \
armv7a.c \ armv7a.c \
cortex_a.c cortex_a.c


@@ -137,7 +137,7 @@ noinst_HEADERS = \
dsp563xx_once.h \ dsp563xx_once.h \
dsp5680xx.h \ dsp5680xx.h \
breakpoints.h \ breakpoints.h \
cortex_m3.h \
cortex_m.h \
cortex_a.h \ cortex_a.h \
embeddedice.h \ embeddedice.h \
etb.h \ etb.h \


+ 1
- 1
src/target/arm_semihosting.c View File

@@ -41,7 +41,7 @@
#include "armv4_5.h" #include "armv4_5.h"
#include "arm7_9_common.h" #include "arm7_9_common.h"
#include "armv7m.h" #include "armv7m.h"
#include "cortex_m3.h"
#include "cortex_m.h"
#include "register.h" #include "register.h"
#include "arm_semihosting.h" #include "arm_semihosting.h"
#include <helper/binarybuffer.h> #include <helper/binarybuffer.h>


src/target/cortex_m3.c → src/target/cortex_m.c View File

@@ -32,7 +32,7 @@
#endif #endif


#include "breakpoints.h" #include "breakpoints.h"
#include "cortex_m3.h"
#include "cortex_m.h"
#include "target_request.h" #include "target_request.h"
#include "target_type.h" #include "target_type.h"
#include "arm_disassembler.h" #include "arm_disassembler.h"

src/target/cortex_m3.h → src/target/cortex_m.h View File


Loading…
Cancel
Save