- Timestamp:
- 2012-12-02T22:29:34Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a00ee0, 5df69cb
- Parents:
- 5481a22e
- Location:
- kernel/arch/arm32
- Files:
-
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/Makefile.inc
r5481a22e rf9ab562 76 76 endif 77 77 78 ifeq ($(MACHINE),testarm)79 ARCH_SOURCES += arch/$(KARCH)/src/mach/testarm/testarm.c80 endif81 82 78 ifeq ($(MACHINE),integratorcp) 83 79 ARCH_SOURCES += arch/$(KARCH)/src/mach/integratorcp/integratorcp.c -
kernel/arch/arm32/include/fpu_context.h
r5481a22e rf9ab562 31 31 */ 32 32 /** @file 33 * @brief FPU context (not implemented). 34 * 35 * GXemul doesn't support FPU on its ARM CPU. 33 * @brief FPU context. 36 34 */ 37 35 -
kernel/arch/arm32/src/mach/gta02/gta02.c
r5481a22e rf9ab562 27 27 */ 28 28 29 /** @addtogroup arm32g xemul29 /** @addtogroup arm32gta02 30 30 * @{ 31 31 */ -
kernel/arch/arm32/src/machine_func.c
r5481a22e rf9ab562 41 41 #include <arch/mach/gta02/gta02.h> 42 42 #include <arch/mach/integratorcp/integratorcp.h> 43 #include <arch/mach/testarm/testarm.h>44 43 #include <arch/mach/beagleboardxm/beagleboardxm.h> 45 44 … … 52 51 #if defined(MACHINE_gta02) 53 52 machine_ops = >a02_machine_ops; 54 #elif defined(MACHINE_testarm)55 machine_ops = &gxemul_machine_ops;56 53 #elif defined(MACHINE_integratorcp) 57 54 machine_ops = &icp_machine_ops;
Note:
See TracChangeset
for help on using the changeset viewer.