diff options
| author | Palmer Dabbelt <palmer@dabbelt.com> | 2017-04-06 15:24:17 -0700 |
|---|---|---|
| committer | Palmer Dabbelt <palmer@dabbelt.com> | 2017-04-06 15:24:17 -0700 |
| commit | fab7311f18c49be82e8e1681c8966e576525d3ed (patch) | |
| tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /testing/examples/STR912Test | |
| parent | ffe0ced9ebd54ab1e297ebdf0f6b995b3e077989 (diff) | |
| download | riscv-openocd-__archive__.zip riscv-openocd-__archive__.tar.gz riscv-openocd-__archive__.tar.bz2 | |
archive branch__archive__
Diffstat (limited to 'testing/examples/STR912Test')
| -rw-r--r-- | testing/examples/STR912Test/inc/typedefs.h | 50 | ||||
| -rw-r--r-- | testing/examples/STR912Test/makefile | 146 | ||||
| -rw-r--r-- | testing/examples/STR912Test/prj/eclipse_ram.gdb | 21 | ||||
| -rw-r--r-- | testing/examples/STR912Test/prj/eclipse_rom.gdb | 21 | ||||
| -rw-r--r-- | testing/examples/STR912Test/prj/str912_jtagkey.cfg | 41 | ||||
| -rw-r--r-- | testing/examples/STR912Test/prj/str912_program.script | 9 | ||||
| -rw-r--r-- | testing/examples/STR912Test/prj/str912_ram.ld | 218 | ||||
| -rw-r--r-- | testing/examples/STR912Test/prj/str912_rom.ld | 249 | ||||
| -rw-r--r-- | testing/examples/STR912Test/src/main.c | 91 | ||||
| -rw-r--r-- | testing/examples/STR912Test/src/startup.s | 222 | ||||
| -rw-r--r-- | testing/examples/STR912Test/test_ram.elf | bin | 40512 -> 0 bytes | |||
| -rw-r--r-- | testing/examples/STR912Test/test_ram.hex | 30 | ||||
| -rw-r--r-- | testing/examples/STR912Test/test_ram.map | 255 | ||||
| -rw-r--r-- | testing/examples/STR912Test/test_rom.elf | bin | 40570 -> 0 bytes | |||
| -rw-r--r-- | testing/examples/STR912Test/test_rom.hex | 28 | ||||
| -rw-r--r-- | testing/examples/STR912Test/test_rom.map | 280 |
16 files changed, 0 insertions, 1661 deletions
diff --git a/testing/examples/STR912Test/inc/typedefs.h b/testing/examples/STR912Test/inc/typedefs.h deleted file mode 100644 index f43416d..0000000 --- a/testing/examples/STR912Test/inc/typedefs.h +++ /dev/null @@ -1,50 +0,0 @@ -/**************************************************************************** -* Copyright (c) 2006 by Michael Fischer. All rights reserved. -* -* Redistribution and use in source and binary forms, with or without -* modification, are permitted provided that the following conditions -* are met: -* -* 1. Redistributions of source code must retain the above copyright -* notice, this list of conditions and the following disclaimer. -* 2. Redistributions in binary form must reproduce the above copyright -* notice, this list of conditions and the following disclaimer in the -* documentation and/or other materials provided with the distribution. -* 3. Neither the name of the author nor the names of its contributors may -* be used to endorse or promote products derived from this software -* without specific prior written permission. -* -* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL -* THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS -* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED -* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF -* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -* SUCH DAMAGE. -* -**************************************************************************** -* History: -* -* 30.03.06 mifi First Version for Insight tutorial -****************************************************************************/ -#ifndef __TYPEDEFS_H__ -#define __TYPEDEFS_H__ - -/* - * Some types to use Windows like source - */ -typedef char CHAR; /* 8-bit signed data */ -typedef unsigned char BYTE; /* 8-bit unsigned data */ -typedef unsigned short WORD; /* 16-bit unsigned data */ -typedef long LONG; /* 32-bit signed data */ -typedef unsigned long ULONG; /* 32-bit unsigned data */ -typedef unsigned long DWORD; /* 32-bit unsigned data */ - - -#endif /* !__TYPEDEFS_H__ */ -/*** EOF ***/ diff --git a/testing/examples/STR912Test/makefile b/testing/examples/STR912Test/makefile deleted file mode 100644 index ee76857..0000000 --- a/testing/examples/STR912Test/makefile +++ /dev/null @@ -1,146 +0,0 @@ -# -# !!!! Do NOT edit this makefile with an editor which replace tabs by spaces !!!! -# -############################################################################################## -# -# On command line: -# -# make all = Create project -# -# make clean = Clean project files. -# -# To rebuild project do "make clean" and "make all". -# - -############################################################################################## -# Start of default section -# - -TRGT = arm-elf- -CC = $(TRGT)gcc -CP = $(TRGT)objcopy -AS = $(TRGT)gcc -x assembler-with-cpp -BIN = $(CP) -O ihex - -MCU = arm9e - -# List all default C defines here, like -D_DEBUG=1 -DDEFS = - -# List all default ASM defines here, like -D_DEBUG=1 -DADEFS = - -# List all default directories to look for include files here -DINCDIR = - -# List the default directory to look for the libraries here -DLIBDIR = - -# List all default libraries here -DLIBS = - -# -# End of default section -############################################################################################## - -############################################################################################## -# Start of user section -# - -# Define project name here -PROJECT = test - -# Define linker script file here -LDSCRIPT_RAM = ./prj/str912_ram.ld -LDSCRIPT_ROM = ./prj/str912_rom.ld - -# List all user C define here, like -D_DEBUG=1 -UDEFS = - -# Define ASM defines here -UADEFS = - -# List C source files here -SRC = ./src/main.c - -# List ASM source files here -ASRC = ./src/startup.s - -# List all user directories here -UINCDIR = ./inc - -# List the user directory to look for the libraries here -ULIBDIR = - -# List all user libraries here -ULIBS = - -# Define optimisation level here -OPT = -O0 - -# -# End of user defines -############################################################################################## - - -INCDIR = $(patsubst %,-I%,$(DINCDIR) $(UINCDIR)) -LIBDIR = $(patsubst %,-L%,$(DLIBDIR) $(ULIBDIR)) -DEFS = $(DDEFS) $(UDEFS) -ADEFS = $(DADEFS) $(UADEFS) -OBJS = $(ASRC:.s=.o) $(SRC:.c=.o) -LIBS = $(DLIBS) $(ULIBS) -MCFLAGS = -mcpu=$(MCU) - -ASFLAGS = $(MCFLAGS) -g -gdwarf-2 -Wa,-amhls=$(<:.s=.lst) $(ADEFS) -CPFLAGS = $(MCFLAGS) $(OPT) -gdwarf-2 -mthumb-interwork -fomit-frame-pointer -Wall -Wstrict-prototypes -fverbose-asm -Wa,-ahlms=$(<:.c=.lst) $(DEFS) -LDFLAGS_RAM = $(MCFLAGS) -nostartfiles -T$(LDSCRIPT_RAM) -Wl,-Map=$(PROJECT)_ram.map,--cref,--no-warn-mismatch $(LIBDIR) -LDFLAGS_ROM = $(MCFLAGS) -nostartfiles -T$(LDSCRIPT_ROM) -Wl,-Map=$(PROJECT)_rom.map,--cref,--no-warn-mismatch $(LIBDIR) - -# Generate dependency information -CPFLAGS += -MD -MP -MF .dep/$(@F).d - -# -# makefile rules -# - -all: RAM ROM - -RAM: $(OBJS) $(PROJECT)_ram.elf $(PROJECT)_ram.hex - -ROM: $(OBJS) $(PROJECT)_rom.elf $(PROJECT)_rom.hex - -%o : %c - $(CC) -c $(CPFLAGS) -I . $(INCDIR) $< -o $@ - -%o : %s - $(AS) -c $(ASFLAGS) $< -o $@ - -%ram.elf: $(OBJS) - $(CC) $(OBJS) $(LDFLAGS_RAM) $(LIBS) -o $@ - -%rom.elf: $(OBJS) - $(CC) $(OBJS) $(LDFLAGS_ROM) $(LIBS) -o $@ - -%hex: %elf - $(BIN) $< $@ - -clean: - -rm -f $(OBJS) - -rm -f $(PROJECT)_ram.elf - -rm -f $(PROJECT)_ram.map - -rm -f $(PROJECT)_ram.hex - -rm -f $(PROJECT)_rom.elf - -rm -f $(PROJECT)_rom.map - -rm -f $(PROJECT)_rom.hex - -rm -f $(SRC:.c=.c.bak) - -rm -f $(SRC:.c=.lst) - -rm -f $(ASRC:.s=.s.bak) - -rm -f $(ASRC:.s=.lst) - -rm -fR .dep - -# -# Include the dependency files, should be the last of the makefile -# --include $(shell mkdir .dep 2>/dev/null) $(wildcard .dep/*) - -# *** EOF ***
\ No newline at end of file diff --git a/testing/examples/STR912Test/prj/eclipse_ram.gdb b/testing/examples/STR912Test/prj/eclipse_ram.gdb deleted file mode 100644 index 00a62d7..0000000 --- a/testing/examples/STR912Test/prj/eclipse_ram.gdb +++ /dev/null @@ -1,21 +0,0 @@ -target remote localhost:3333 -monitor reset -monitor sleep 500 -monitor poll -monitor soft_reset_halt -monitor arm7_9 sw_bkpts enable - -# Set SRAM size to 96 KB -monitor mww 0x5C002034 0x0197 -monitor mdw 0x5C002034 - -# Set Flash, Bank0 size to 512 KB -monitor mww 0x54000000 0xf - -load -break main -continue - - - - diff --git a/testing/examples/STR912Test/prj/eclipse_rom.gdb b/testing/examples/STR912Test/prj/eclipse_rom.gdb deleted file mode 100644 index 58977cf..0000000 --- a/testing/examples/STR912Test/prj/eclipse_rom.gdb +++ /dev/null @@ -1,21 +0,0 @@ -target remote localhost:3333 -monitor reset -monitor sleep 500 -monitor poll -monitor soft_reset_halt -monitor arm7_9 force_hw_bkpts enable - -# Set SRAM size to 96 KB -monitor mww 0x5C002034 0x0197 -monitor mdw 0x5C002034 - -# Set Flash, Bank0 size to 512 KB -monitor mww 0x54000000 0xf - -load -break main -continue - - - - diff --git a/testing/examples/STR912Test/prj/str912_jtagkey.cfg b/testing/examples/STR912Test/prj/str912_jtagkey.cfg deleted file mode 100644 index f379e0d..0000000 --- a/testing/examples/STR912Test/prj/str912_jtagkey.cfg +++ /dev/null @@ -1,41 +0,0 @@ -#daemon configuration -telnet_port 4444 -gdb_port 3333 - -# tell gdb our flash memory map -# and enable flash programming -gdb_memory_map enable -gdb_flash_program enable - -#interface -interface ft2232 -ft2232_device_desc "Amontec JTAGkey A" -ft2232_layout jtagkey -ft2232_vid_pid 0x0403 0xcff8 -jtag_speed 1 - -jtag_nsrst_delay 100 -jtag_ntrst_delay 100 - -#use combined on interfaces or targets that can't set TRST/SRST separately -reset_config trst_and_srst - -#jtag scan chain -jtag newtap str9 flash -irlen 8 -jtag newtap str9 cpu -irlen 4 -irmask 0xf -jtag newtap str9 bs -irlen 5 - -#target configuration -target create target0 arm966e -endian little -chain-position 1 -[new_target_name] configure -work-area-virt 0 -work-area-phys 0x50000000 -work-area-size 16384 -work-area-backup false - -target_script 0 gdb_program_config .\prj\str912_program.script - -#flash bank str7x <base> <size> 0 0 <target#> <variant> -flash bank str9x 0x00000000 0x00080000 0 0 0 - -# For more information about the configuration files, -# look at the OpenOCD User's Guide. - -init -reset halt diff --git a/testing/examples/STR912Test/prj/str912_program.script b/testing/examples/STR912Test/prj/str912_program.script deleted file mode 100644 index df0239b..0000000 --- a/testing/examples/STR912Test/prj/str912_program.script +++ /dev/null @@ -1,9 +0,0 @@ -str9x flash_config 0 4 2 0 0x80000 -flash protect 0 0 7 off - - - - - - - diff --git a/testing/examples/STR912Test/prj/str912_ram.ld b/testing/examples/STR912Test/prj/str912_ram.ld deleted file mode 100644 index 269ada9..0000000 --- a/testing/examples/STR912Test/prj/str912_ram.ld +++ /dev/null @@ -1,218 +0,0 @@ -/*********************************************************************************** -* Copyright 2005 Anglia Design -* This demo code and associated components are provided as is and has no warranty, -* implied or otherwise. You are free to use/modify any of the provided -* code at your own risk in your applications with the expressed limitation -* of liability (see below) -* -* LIMITATION OF LIABILITY: ANGLIA OR ANGLIA DESIGNS SHALL NOT BE LIABLE FOR ANY -* LOSS OF PROFITS, LOSS OF USE, LOSS OF DATA, INTERRUPTION OF BUSINESS, NOR FOR -* INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OF ANY KIND WHETHER UNDER -* THIS AGREEMENT OR OTHERWISE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -* -* Author : Spencer Oliver -* Web : www.anglia-designs.com -* -***********************************************************************************/ - -/* Stack Sizes */ - - _STACKSIZE = 1024; - _STACKSIZE_IRQ = 256; - _STACKSIZE_FIQ = 0; - _STACKSIZE_SVC = 1024; - _STACKSIZE_ABT = 0; - _STACKSIZE_UND = 0; - _HEAPSIZE = 1024; - -/* Memory Definitions */ - -MEMORY -{ - DATA (rw) : ORIGIN = 0x04000000, LENGTH = 0x00018000 -} - -/* Section Definitions */ - -SECTIONS -{ - /* first section is .text which is used for code */ - - .text : - { - KEEP(*(.vectors)) - KEEP(*(.init)) - *(.text .text.*) - *(.gnu.linkonce.t.*) - *(.glue_7t .glue_7) - KEEP(*(.fini)) - *(.gcc_except_table) - } >DATA =0 - . = ALIGN(4); - - /* .ctors .dtors are used for c++ constructors/destructors */ - - .ctors : - { - PROVIDE(__ctors_start__ = .); - KEEP(*(SORT(.ctors.*))) - KEEP(*(.ctors)) - PROVIDE(__ctors_end__ = .); - } >DATA - - .dtors : - { - PROVIDE(__dtors_start__ = .); - KEEP(*(SORT(.dtors.*))) - KEEP(*(.dtors)) - PROVIDE(__dtors_end__ = .); - } >DATA - - /* .rodata section which is used for read-only data (constants) */ - - .rodata : - { - *(.rodata .rodata.*) - *(.gnu.linkonce.r.*) - } >DATA - . = ALIGN(4); - - _etext = .; - PROVIDE (etext = .); - - /* .data section which is used for initialized data */ - - .data : AT (_etext) - { - *(.data .data.*) - *(.gnu.linkonce.d.*) - SORT(CONSTRUCTORS) - } >DATA - . = ALIGN(4); - - __data_start = .; - _edata = .; - PROVIDE (edata = .); - - /* .bss section which is used for uninitialized data */ - - .bss : - { - __bss_start = .; - __bss_start__ = .; - *(.bss .bss.*) - *(.gnu.linkonce.b.*) - *(COMMON) - . = ALIGN(4); - } >DATA - . = ALIGN(4); - __bss_end__ = .; - - _end = .; - PROVIDE(end = .); - - /* .heap section which is used for memory allocation */ - - .heap (NOLOAD) : - { - __heap_start__ = .; - *(.heap) - . = MAX(__heap_start__ + _HEAPSIZE , .); - } >DATA - __heap_end__ = __heap_start__ + SIZEOF(.heap); - - /* .stack section - user mode stack */ - - .stack (__heap_end__ + 3) / 4 * 4 (NOLOAD) : - { - __stack_start__ = .; - *(.stack) - . = MAX(__stack_start__ + _STACKSIZE , .); - } >DATA - __stack_end__ = __stack_start__ + SIZEOF(.stack); - - /* .stack_irq section */ - - .stack_irq (__stack_end__ + 3) / 4 * 4 (NOLOAD) : - { - __stack_irq_start__ = .; - *(.stack_irq) - . = MAX(__stack_irq_start__ + _STACKSIZE_IRQ , .); - } >DATA - __stack_irq_end__ = __stack_irq_start__ + SIZEOF(.stack_irq); - - /* .stack_fiq section */ - - .stack_fiq (__stack_irq_end__ + 3) / 4 * 4 (NOLOAD) : - { - __stack_fiq_start__ = .; - *(.stack_fiq) - . = MAX(__stack_fiq_start__ + _STACKSIZE_FIQ , .); - } >DATA - __stack_fiq_end__ = __stack_fiq_start__ + SIZEOF(.stack_fiq); - - /* .stack_svc section */ - - .stack_svc (__stack_fiq_end__ + 3) / 4 * 4 (NOLOAD) : - { - __stack_svc_start__ = .; - *(.stack_svc) - . = MAX(__stack_svc_start__ + _STACKSIZE_SVC , .); - } >DATA - __stack_svc_end__ = __stack_svc_start__ + SIZEOF(.stack_svc); - - /* .stack_abt section */ - - .stack_abt (__stack_svc_end__ + 3) / 4 * 4 (NOLOAD) : - { - __stack_abt_start__ = .; - *(.stack_abt) - . = MAX(__stack_abt_start__ + _STACKSIZE_ABT , .); - } >DATA - __stack_abt_end__ = __stack_abt_start__ + SIZEOF(.stack_abt); - - /* .stack_und section */ - - .stack_und (__stack_abt_end__ + 3) / 4 * 4 (NOLOAD) : - { - __stack_und_start__ = .; - *(.stack_und) - . = MAX(__stack_und_start__ + _STACKSIZE_UND , .); - } >DATA - __stack_und_end__ = __stack_und_start__ + SIZEOF(.stack_und); - - /* Stabs debugging sections. */ - .stab 0 : { *(.stab) } - .stabstr 0 : { *(.stabstr) } - .stab.excl 0 : { *(.stab.excl) } - .stab.exclstr 0 : { *(.stab.exclstr) } - .stab.index 0 : { *(.stab.index) } - .stab.indexstr 0 : { *(.stab.indexstr) } - .comment 0 : { *(.comment) } - /* DWARF debug sections. - Symbols in the DWARF debugging sections are relative to the beginning - of the section so we begin them at 0. */ - /* DWARF 1 */ - .debug 0 : { *(.debug) } - .line 0 : { *(.line) } - /* GNU DWARF 1 extensions */ - .debug_srcinfo 0 : { *(.debug_srcinfo) } - .debug_sfnames 0 : { *(.debug_sfnames) } - /* DWARF 1.1 and DWARF 2 */ - .debug_aranges 0 : { *(.debug_aranges) } - .debug_pubnames 0 : { *(.debug_pubnames) } - /* DWARF 2 */ - .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } - .debug_abbrev 0 : { *(.debug_abbrev) } - .debug_line 0 : { *(.debug_line) } - .debug_frame 0 : { *(.debug_frame) } - .debug_str 0 : { *(.debug_str) } - .debug_loc 0 : { *(.debug_loc) } - .debug_macinfo 0 : { *(.debug_macinfo) } - /* SGI/MIPS DWARF 2 extensions */ - .debug_weaknames 0 : { *(.debug_weaknames) } - .debug_funcnames 0 : { *(.debug_funcnames) } - .debug_typenames 0 : { *(.debug_typenames) } - .debug_varnames 0 : { *(.debug_varnames) } -} - diff --git a/testing/examples/STR912Test/prj/str912_rom.ld b/testing/examples/STR912Test/prj/str912_rom.ld deleted file mode 100644 index 804149d..0000000 --- a/testing/examples/STR912Test/prj/str912_rom.ld +++ /dev/null @@ -1,249 +0,0 @@ -/*********************************************************************************** -* Copyright 2005 Anglia Design -* This demo code and associated components are provided as is and has no warranty, -* implied or otherwise. You are free to use/modify any of the provided -* code at your own risk in your applications with the expressed limitation -* of liability (see below) -* -* LIMITATION OF LIABILITY: ANGLIA OR ANGLIA DESIGNS SHALL NOT BE LIABLE FOR ANY -* LOSS OF PROFITS, LOSS OF USE, LOSS OF DATA, INTERRUPTION OF BUSINESS, NOR FOR -* INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OF ANY KIND WHETHER UNDER -* THIS AGREEMENT OR OTHERWISE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -* -* Author : Spencer Oliver -* Web : www.anglia-designs.com -* -***********************************************************************************/ - -/* Stack Sizes */ - - _STACKSIZE = 1024; - _STACKSIZE_IRQ = 256; - _STACKSIZE_FIQ = 0; - _STACKSIZE_SVC = 1024; - _STACKSIZE_ABT = 0; - _STACKSIZE_UND = 0; - _HEAPSIZE = 1024; - -/* Memory Definitions */ - -MEMORY -{ - CODE (rx) : ORIGIN = 0x00000000, LENGTH = 0x00080000 - DATA (rw) : ORIGIN = 0x04000000, LENGTH = 0x00018000 -} - -/* Section Definitions */ - -SECTIONS -{ - /* first section is .text which is used for code */ - - .text : - { - CREATE_OBJECT_SYMBOLS - KEEP(*(.vectors)) - KEEP(*(.init)) - *(.text .text.*) - *(.gnu.linkonce.t.*) - *(.glue_7t) *(.glue_7) *(.vfp11_veneer) - KEEP(*(.fini)) - *(.gcc_except_table) - } >CODE =0 - . = ALIGN(4); - - /* .ctors .dtors are used for c++ constructors/destructors */ - - .ctors : - { - PROVIDE(__ctors_start__ = .); - KEEP(*(SORT(.ctors.*))) - KEEP(*(.ctors)) - PROVIDE(__ctors_end__ = .); - } >CODE - - .dtors : - { - PROVIDE(__dtors_start__ = .); - KEEP(*(SORT(.dtors.*))) - KEEP(*(.dtors)) - PROVIDE(__dtors_end__ = .); - } >CODE - - /* .rodata section which is used for read-only data (constants) */ - - .rodata : - { - *(.rodata .rodata.*) - *(.gnu.linkonce.r.*) - } >CODE - . = ALIGN(4); - - .init_array : - { - *(.init) - *(.fini) - PROVIDE_HIDDEN (__preinit_array_start = .); - KEEP (*(.preinit_array)) - PROVIDE_HIDDEN (__preinit_array_end = .); - PROVIDE_HIDDEN (__init_array_start = .); - KEEP (*(SORT(.init_array.*))) - KEEP (*(.init_array)) - PROVIDE_HIDDEN (__init_array_end = .); - PROVIDE_HIDDEN (__fini_array_start = .); - KEEP (*(.fini_array)) - KEEP (*(SORT(.fini_array.*))) - PROVIDE_HIDDEN (__fini_array_end = .); - } >CODE - - . = ALIGN(4); - - /* .ARM.exidx is sorted, so has to go in its own output section. */ - __exidx_start = .; - .ARM.exidx : - { - *(.ARM.exidx* .gnu.linkonce.armexidx.*) - } >CODE - __exidx_end = .; - - _etext = .; - PROVIDE (etext = .); - - /* .data section which is used for initialized data */ - - .data : AT (_etext) - { - __data_start = .; - *(.data .data.*) - *(.gnu.linkonce.d.*) - SORT(CONSTRUCTORS) - . = ALIGN(4); - *(.fastrun .fastrun.*) - } >DATA - . = ALIGN(4); - - _edata = .; - PROVIDE (edata = .); - - /* .bss section which is used for uninitialized data */ - - .bss : - { - __bss_start = .; - __bss_start__ = .; - *(.bss .bss.*) - *(.gnu.linkonce.b.*) - *(COMMON) - . = ALIGN(4); - } >DATA - . = ALIGN(4); - __bss_end__ = .; - - _end = .; - PROVIDE(end = .); - - /* .heap section which is used for memory allocation */ - - .heap (NOLOAD) : - { - __heap_start__ = .; - *(.heap) - . = MAX(__heap_start__ + _HEAPSIZE , .); - } >DATA - __heap_end__ = __heap_start__ + SIZEOF(.heap); - - /* .stack section - user mode stack */ - - .stack (__heap_end__ + 3) / 4 * 4 (NOLOAD) : - { - __stack_start__ = .; - *(.stack) - . = MAX(__stack_start__ + _STACKSIZE , .); - } >DATA - __stack_end__ = __stack_start__ + SIZEOF(.stack); - - /* .stack_irq section */ - - .stack_irq (__stack_end__ + 3) / 4 * 4 (NOLOAD) : - { - __stack_irq_start__ = .; - *(.stack_irq) - . = MAX(__stack_irq_start__ + _STACKSIZE_IRQ , .); - } >DATA - __stack_irq_end__ = __stack_irq_start__ + SIZEOF(.stack_irq); - - /* .stack_fiq section */ - - .stack_fiq (__stack_irq_end__ + 3) / 4 * 4 (NOLOAD) : - { - __stack_fiq_start__ = .; - *(.stack_fiq) - . = MAX(__stack_fiq_start__ + _STACKSIZE_FIQ , .); - } >DATA - __stack_fiq_end__ = __stack_fiq_start__ + SIZEOF(.stack_fiq); - - /* .stack_svc section */ - - .stack_svc (__stack_fiq_end__ + 3) / 4 * 4 (NOLOAD) : - { - __stack_svc_start__ = .; - *(.stack_svc) - . = MAX(__stack_svc_start__ + _STACKSIZE_SVC , .); - } >DATA - __stack_svc_end__ = __stack_svc_start__ + SIZEOF(.stack_svc); - - /* .stack_abt section */ - - .stack_abt (__stack_svc_end__ + 3) / 4 * 4 (NOLOAD) : - { - __stack_abt_start__ = .; - *(.stack_abt) - . = MAX(__stack_abt_start__ + _STACKSIZE_ABT , .); - } >DATA - __stack_abt_end__ = __stack_abt_start__ + SIZEOF(.stack_abt); - - /* .stack_und section */ - - .stack_und (__stack_abt_end__ + 3) / 4 * 4 (NOLOAD) : - { - __stack_und_start__ = .; - *(.stack_und) - . = MAX(__stack_und_start__ + _STACKSIZE_UND , .); - } >DATA - __stack_und_end__ = __stack_und_start__ + SIZEOF(.stack_und); - - /* Stabs debugging sections. */ - .stab 0 : { *(.stab) } - .stabstr 0 : { *(.stabstr) } - .stab.excl 0 : { *(.stab.excl) } - .stab.exclstr 0 : { *(.stab.exclstr) } - .stab.index 0 : { *(.stab.index) } - .stab.indexstr 0 : { *(.stab.indexstr) } - .comment 0 : { *(.comment) } - /* DWARF debug sections. - Symbols in the DWARF debugging sections are relative to the beginning - of the section so we begin them at 0. */ - /* DWARF 1 */ - .debug 0 : { *(.debug) } - .line 0 : { *(.line) } - /* GNU DWARF 1 extensions */ - .debug_srcinfo 0 : { *(.debug_srcinfo) } - .debug_sfnames 0 : { *(.debug_sfnames) } - /* DWARF 1.1 and DWARF 2 */ - .debug_aranges 0 : { *(.debug_aranges) } - .debug_pubnames 0 : { *(.debug_pubnames) } - /* DWARF 2 */ - .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) } - .debug_abbrev 0 : { *(.debug_abbrev) } - .debug_line 0 : { *(.debug_line) } - .debug_frame 0 : { *(.debug_frame) } - .debug_str 0 : { *(.debug_str) } - .debug_loc 0 : { *(.debug_loc) } - .debug_macinfo 0 : { *(.debug_macinfo) } - /* SGI/MIPS DWARF 2 extensions */ - .debug_weaknames 0 : { *(.debug_weaknames) } - .debug_funcnames 0 : { *(.debug_funcnames) } - .debug_typenames 0 : { *(.debug_typenames) } - .debug_varnames 0 : { *(.debug_varnames) } -} - diff --git a/testing/examples/STR912Test/src/main.c b/testing/examples/STR912Test/src/main.c deleted file mode 100644 index 99f2d26..0000000 --- a/testing/examples/STR912Test/src/main.c +++ /dev/null @@ -1,91 +0,0 @@ -/**************************************************************************** -* Copyright (c) 2006 by Michael Fischer. All rights reserved. -* -* Redistribution and use in source and binary forms, with or without -* modification, are permitted provided that the following conditions -* are met: -* -* 1. Redistributions of source code must retain the above copyright -* notice, this list of conditions and the following disclaimer. -* 2. Redistributions in binary form must reproduce the above copyright -* notice, this list of conditions and the following disclaimer in the -* documentation and/or other materials provided with the distribution. -* 3. Neither the name of the author nor the names of its contributors may -* be used to endorse or promote products derived from this software -* without specific prior written permission. -* -* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL -* THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS -* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED -* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF -* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -* SUCH DAMAGE. -* -**************************************************************************** -* History: -* -* 30.03.06 mifi First Version for Insight tutorial -* 26.01.08 mifi Added variable "d" to test const variable. -****************************************************************************/ -#define __MAIN_C__ - -/* - * I use the include only, to show - * how to setup a include dir in the makefile - */ -#include "typedefs.h" - -/*=========================================================================*/ -/* DEFINE: All Structures and Common Constants */ -/*=========================================================================*/ - -/*=========================================================================*/ -/* DEFINE: Prototypes */ -/*=========================================================================*/ - -/*=========================================================================*/ -/* DEFINE: Definition of all local Data */ -/*=========================================================================*/ -static const DWORD d = 7; - -/*=========================================================================*/ -/* DEFINE: Definition of all local Procedures */ -/*=========================================================================*/ - -/*=========================================================================*/ -/* DEFINE: All code exported */ -/*=========================================================================*/ -/***************************************************************************/ -/* main */ -/***************************************************************************/ -int main (void) -{ - DWORD a = 1; - DWORD b = 2; - DWORD c = 0; - - a = a + d; - - while (1) - { - a++; - b++; - c = a + b; - } - - /* - * This return here make no sense. - * But to prevent the compiler warning: - * "return type of 'main' is not 'int' - * we use an int as return :-) - */ - return(0); -} - -/*** EOF ***/ diff --git a/testing/examples/STR912Test/src/startup.s b/testing/examples/STR912Test/src/startup.s deleted file mode 100644 index 15f03d2..0000000 --- a/testing/examples/STR912Test/src/startup.s +++ /dev/null @@ -1,222 +0,0 @@ -/*********************************************************************************** -* Copyright 2005 Anglia Design -* This demo code and associated components are provided as is and has no warranty, -* implied or otherwise. You are free to use/modify any of the provided -* code at your own risk in your applications with the expressed limitation -* of liability (see below) -* -* LIMITATION OF LIABILITY: ANGLIA OR ANGLIA DESIGNS SHALL NOT BE LIABLE FOR ANY -* LOSS OF PROFITS, LOSS OF USE, LOSS OF DATA, INTERRUPTION OF BUSINESS, NOR FOR -* INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OF ANY KIND WHETHER UNDER -* THIS AGREEMENT OR OTHERWISE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -* -* Author : Spencer Oliver -* Web : www.anglia-designs.com -* -* mifi, 22.01.2008, small changes by the init of the C++ eabi constructors. -* Here I have replaced the eabi init by the normal init. -* Thanks to Spen for the startup code. -***********************************************************************************/ - -/**** Startup Code (executed after Reset) ****/ - -/* Frequency values kHz */ -/* set to suit target hardware */ - - .equ FOSC, 25000 - -/* Standard definitions of Mode bits and Interrupt (I & F) flags in PSRs */ - - .equ Mode_USR, 0x10 - .equ Mode_FIQ, 0x11 - .equ Mode_IRQ, 0x12 - .equ Mode_SVC, 0x13 - .equ Mode_ABT, 0x17 - .equ Mode_UND, 0x1B - .equ Mode_SYS, 0x1F /* available on ARM Arch 4 and later */ - - .equ I_Bit, 0x80 /* when I bit is set, IRQ is disabled */ - .equ F_Bit, 0x40 /* when F bit is set, FIQ is disabled */ - - .equ SRAM32, 0x00 - .equ SRAM64, 0x08 - .equ SRAM96, 0x10 - -/* --- System memory locations */ - - .equ SCRO_AHB_UMB, 0x5C002034 /* System configuration register 0 (unbuffered) */ - - .equ FMI_BASE_UMB, 0x54000000 /* Flash FMI base address (unbuffered) */ - .equ BBSR_off_addr, 0x00 - .equ NBBSR_off_addr, 0x04 - .equ BBADR_off_addr, 0x0C - .equ NBBADR_off_addr, 0x10 - .equ CR_off_addr, 0x18 - -.ifndef LIBUFF - .equ LIBUFF, 0 -.endif - -/* Startup Code must be linked first at Address at which it expects to run. */ - - .text - .arm - .section .init, "ax" - - .global _start - .global _Main_Crystal - -/* After remap this will be our reset handler */ - -_start: - LDR pc, =NextInst -NextInst: - - NOP /* Wait for OSC stabilization */ - NOP - NOP - NOP - NOP - NOP - NOP - NOP - NOP - -/* Enable buffered mode */ - -.if LIBUFF - MRC p15, 0, r0, c1, c0, 0 /* Read CP15 register 1 into r0 */ - ORR r0, r0, #0x8 /* Enable Write Buffer on AHB */ - MCR p15, 0, r0, c1, c0, 0 /* Write CP15 register 1 */ -.endif - -/* Remap Flash Bank 0 at address 0x0 and Bank 1 at address 0x80000, */ -/* when the bank 0 is the boot bank, then enable the Bank 1. */ - - LDR r0, =FMI_BASE_UMB - LDR r1, =0x4 /* configure 512KB Boot bank 0 */ - STR r1, [r0, #BBSR_off_addr] - - LDR r1, =0x2 /* configure 32KB Non Boot bank 1 */ - STR r1, [r0, #NBBSR_off_addr] - - LDR r1, =(0x00000000 >> 2) /* Boot Bank Base Address */ - STR r1, [r0, #BBADR_off_addr] - - LDR r1, =(0x00080000 >> 2) /* Non Boot Bank Base Address */ - STR r1, [r0, #NBBADR_off_addr] - - LDR r1, =0x18 /* Flash Banks 0 1 enabled */ - STR r1, [r0, #CR_off_addr] - -/* Enable 96K RAM */ - - LDR r0, =SCRO_AHB_UMB -# LDR r1, =0x0196 /* prefetch disabled, default enabled */ - LDR r1, =0x0187|SRAM96 - STR r1, [r0] - -/* Set bits 17-18 (Instruction/Data TCM order) of the */ -/* Core Configuration Control Register */ - - MOV r0, #0x60000 - MCR p15, 0x1, r0, c15, c1, 0 - -/* Setup Stack for each mode */ - -/* Enter Abort Mode and set its Stack Pointer */ - - MSR cpsr_c, #Mode_ABT|I_Bit|F_Bit - LDR sp, =__stack_abt_end__ - -/* Enter Undefined Instruction Mode and set its Stack Pointer */ - - MSR cpsr_c, #Mode_UND|I_Bit|F_Bit - LDR sp, =__stack_und_end__ - -/* Enter Supervisor Mode and set its Stack Pointer */ - - MSR cpsr_c, #Mode_SVC|I_Bit|F_Bit - LDR sp, =__stack_svc_end__ - -/* Enter FIQ Mode and set its Stack Pointer */ - - MSR cpsr_c, #Mode_FIQ|I_Bit|F_Bit - LDR sp, =__stack_fiq_end__ - -/* Enter IRQ Mode and set its Stack Pointer */ - - MSR cpsr_c, #Mode_IRQ|I_Bit|F_Bit - LDR sp, =__stack_irq_end__ - -/* Enter System/User Mode and set its Stack Pointer */ - - MSR cpsr_c, #Mode_SYS - LDR sp, =__stack_end__ - -/* Setup a default Stack Limit (when compiled with "-mapcs-stack-check") */ - - LDR sl, =__bss_end__ - -/* Relocate .data section (Copy from ROM to RAM) */ - - LDR r1, =_etext - LDR r2, =__data_start - LDR r3, =_edata -LoopRel: - CMP r2, r3 - LDRLO r0, [r1], #4 - STRLO r0, [r2], #4 - BLO LoopRel - -/* Clear .bss section (Zero init) */ - - MOV r0, #0 - LDR r1, =__bss_start__ - LDR r2, =__bss_end__ -LoopZI: - CMP r1, r2 - STRLO r0, [r1], #4 - BLO LoopZI - -/* Call C++ constructors */ - - LDR r0, =__ctors_start__ - LDR r1, =__ctors_end__ -ctor_loop: - CMP r0, r1 - BEQ ctor_end - LDR r2, [r0], #4 - STMFD sp!, {r0-r1} - BLX r2 - LDMFD sp!, {r0-r1} - B ctor_loop -ctor_end: - -/* Need to set up standard file handles */ -/* Only used under simulator, normally overide syscall.c */ - -# BL initialise_monitor_handles - -/* if we use debug version of str9lib this will call the init function */ - - BL libdebug -libdebug: - -/* Enter the C code, use B instruction so as to never return */ -/* use BL main if you want to use c++ destructors below */ - - B main - -/* Return from main, loop forever. */ - -#exit_loop: -# B exit_loop - -/* Fosc values, used by libstr9 */ - -_Main_Crystal: .long FOSC - - .weak libdebug - - .end diff --git a/testing/examples/STR912Test/test_ram.elf b/testing/examples/STR912Test/test_ram.elf Binary files differdeleted file mode 100644 index 8e14d55..0000000 --- a/testing/examples/STR912Test/test_ram.elf +++ /dev/null diff --git a/testing/examples/STR912Test/test_ram.hex b/testing/examples/STR912Test/test_ram.hex deleted file mode 100644 index 3c22e29..0000000 --- a/testing/examples/STR912Test/test_ram.hex +++ /dev/null @@ -1,30 +0,0 @@ -:020000040400F6 -:10000000F8F09FE50000A0E10000A0E10000A0E101 -:100010000000A0E10000A0E10000A0E10000A0E1DC -:100020000000A0E10000A0E11503A0E30410A0E39C -:10003000001080E50210A0E3041080E50010A0E3AA -:100040000C1080E50218A0E3101080E51810A0E362 -:10005000181080E5A8009FE5A8109FE5001080E536 -:100060000608A0E3110F2FEED7F021E398D09FE50B -:10007000DBF021E394D09FE5D3F021E390D09FE51E -:10008000D1F021E38CD09FE5D2F021E388D09FE529 -:100090001FF021E384D09FE584A09FE584109FE5B5 -:1000A00084209FE584309FE5030052E104009134F1 -:1000B00004008234FBFFFF3A0000A0E370109FE5CC -:1000C0005C209FE5020051E104008134FCFFFF3A0F -:1000D00060009FE560109FE5010050E10400000A08 -:1000E000042090E403002DE932FF2FE10300BDE876 -:1000F000F8FFFFEAFFFFFFEB100000EAA861000035 -:10010000040000043420005C97010000A40E0004E9 -:10011000A40E0004A40E0004A40A0004A40A00040F -:10012000A4090004A4010004A4010004A401000423 -:10013000A4010004A4010004A0010004A001000423 -:100140000CD04DE20130A0E300308DE50230A0E399 -:1001500004308DE50030A0E308308DE538309FE5B0 -:10016000002093E500309DE5023083E000308DE50E -:1001700000309DE5013083E200308DE504309DE5DF -:10018000013083E204308DE500209DE504309DE5DB -:10019000033082E008308DE5F4FFFFEAA00100049F -:0401A0000700000054 -:0400000504000000F3 -:00000001FF diff --git a/testing/examples/STR912Test/test_ram.map b/testing/examples/STR912Test/test_ram.map deleted file mode 100644 index 249b70b..0000000 --- a/testing/examples/STR912Test/test_ram.map +++ /dev/null @@ -1,255 +0,0 @@ - -Memory Configuration - -Name Origin Length Attributes -DATA 0x04000000 0x00018000 rw -*default* 0x00000000 0xffffffff - -Linker script and memory map - -LOAD ./src/startup.o -LOAD ./src/main.o -START GROUP -LOAD d:/compiler/yagarto/bin/../lib/gcc/arm-elf/4.2.2\libgcc.a -LOAD d:/compiler/yagarto/bin/../lib/gcc/arm-elf/4.2.2/../../../../arm-elf/lib\libc.a -END GROUP - 0x00000400 _STACKSIZE = 0x400 - 0x00000100 _STACKSIZE_IRQ = 0x100 - 0x00000000 _STACKSIZE_FIQ = 0x0 - 0x00000400 _STACKSIZE_SVC = 0x400 - 0x00000000 _STACKSIZE_ABT = 0x0 - 0x00000000 _STACKSIZE_UND = 0x0 - 0x00000400 _HEAPSIZE = 0x400 - -.text 0x04000000 0x1a0 - *(.vectors) - *(.init) - .init 0x04000000 0x140 ./src/startup.o - 0x040000fc _Main_Crystal - 0x04000000 _start - 0x040000f8 libdebug - *(.text .text.*) - .text 0x04000140 0x0 ./src/startup.o - .text 0x04000140 0x60 ./src/main.o - 0x04000140 main - *(.gnu.linkonce.t.*) - *(.glue_7t .glue_7) - .glue_7 0x040001a0 0x0 ./src/startup.o - .glue_7t 0x040001a0 0x0 ./src/startup.o - .glue_7 0x040001a0 0x0 ./src/main.o - .glue_7t 0x040001a0 0x0 ./src/main.o - *(.fini) - *(.gcc_except_table) - -.vfp11_veneer 0x040001a0 0x0 - .vfp11_veneer 0x040001a0 0x0 ./src/startup.o - .vfp11_veneer 0x040001a0 0x0 ./src/main.o - 0x040001a0 . = ALIGN (0x4) - -.ctors 0x040001a0 0x0 - 0x040001a0 PROVIDE (__ctors_start__, .) - *(SORT(.ctors.*)) - *(.ctors) - 0x040001a0 PROVIDE (__ctors_end__, .) - -.dtors 0x040001a0 0x0 - 0x040001a0 PROVIDE (__dtors_start__, .) - *(SORT(.dtors.*)) - *(.dtors) - 0x040001a0 PROVIDE (__dtors_end__, .) - -.rodata 0x040001a0 0x4 - *(.rodata .rodata.*) - .rodata 0x040001a0 0x4 ./src/main.o - *(.gnu.linkonce.r.*) - 0x040001a4 . = ALIGN (0x4) - 0x040001a4 _etext = . - 0x040001a4 PROVIDE (etext, .) - -.data 0x040001a4 0x0 - *(.data .data.*) - .data 0x040001a4 0x0 ./src/startup.o - .data 0x040001a4 0x0 ./src/main.o - *(.gnu.linkonce.d.*) - 0x040001a4 . = ALIGN (0x4) - 0x040001a4 __data_start = . - 0x040001a4 _edata = . - 0x040001a4 PROVIDE (edata, .) - -.bss 0x040001a4 0x0 - 0x040001a4 __bss_start = . - 0x040001a4 __bss_start__ = . - *(.bss .bss.*) - .bss 0x040001a4 0x0 ./src/startup.o - .bss 0x040001a4 0x0 ./src/main.o - *(.gnu.linkonce.b.*) - *(COMMON) - 0x040001a4 . = ALIGN (0x4) - 0x040001a4 . = ALIGN (0x4) - 0x040001a4 __bss_end__ = . - 0x040001a4 _end = . - 0x040001a4 PROVIDE (end, .) - -.heap 0x040001a4 0x400 - 0x040001a4 __heap_start__ = . - *(.heap) - 0x040005a4 . = ((__heap_start__ + _HEAPSIZE) MAX_K .) - *fill* 0x040001a4 0x400 00 - 0x040005a4 __heap_end__ = (__heap_start__ + SIZEOF (.heap)) - -.stack 0x040005a4 0x400 - 0x040005a4 __stack_start__ = . - *(.stack) - 0x040009a4 . = ((__stack_start__ + _STACKSIZE) MAX_K .) - *fill* 0x040005a4 0x400 00 - 0x040009a4 __stack_end__ = (__stack_start__ + SIZEOF (.stack)) - -.stack_irq 0x040009a4 0x100 - 0x040009a4 __stack_irq_start__ = . - *(.stack_irq) - 0x04000aa4 . = ((__stack_irq_start__ + _STACKSIZE_IRQ) MAX_K .) - *fill* 0x040009a4 0x100 00 - 0x04000aa4 __stack_irq_end__ = (__stack_irq_start__ + SIZEOF (.stack_irq)) - -.stack_fiq 0x04000aa4 0x0 - 0x04000aa4 __stack_fiq_start__ = . - *(.stack_fiq) - 0x04000aa4 . = ((__stack_fiq_start__ + _STACKSIZE_FIQ) MAX_K .) - 0x04000aa4 __stack_fiq_end__ = (__stack_fiq_start__ + SIZEOF (.stack_fiq)) - -.stack_svc 0x04000aa4 0x400 - 0x04000aa4 __stack_svc_start__ = . - *(.stack_svc) - 0x04000ea4 . = ((__stack_svc_start__ + _STACKSIZE_SVC) MAX_K .) - *fill* 0x04000aa4 0x400 00 - 0x04000ea4 __stack_svc_end__ = (__stack_svc_start__ + SIZEOF (.stack_svc)) - -.stack_abt 0x04000ea4 0x0 - 0x04000ea4 __stack_abt_start__ = . - *(.stack_abt) - 0x04000ea4 . = ((__stack_abt_start__ + _STACKSIZE_ABT) MAX_K .) - 0x04000ea4 __stack_abt_end__ = (__stack_abt_start__ + SIZEOF (.stack_abt)) - -.stack_und 0x04000ea4 0x0 - 0x04000ea4 __stack_und_start__ = . - *(.stack_und) - 0x04000ea4 . = ((__stack_und_start__ + _STACKSIZE_UND) MAX_K .) - 0x04000ea4 __stack_und_end__ = (__stack_und_start__ + SIZEOF (.stack_und)) - -.stab - *(.stab) - -.stabstr - *(.stabstr) - -.stab.excl - *(.stab.excl) - -.stab.exclstr - *(.stab.exclstr) - -.stab.index - *(.stab.index) - -.stab.indexstr - *(.stab.indexstr) - -.comment 0x00000000 0x12 - *(.comment) - .comment 0x00000000 0x12 ./src/main.o - -.debug - *(.debug) - -.line - *(.line) - -.debug_srcinfo - *(.debug_srcinfo) - -.debug_sfnames - *(.debug_sfnames) - -.debug_aranges 0x00000000 0x40 - *(.debug_aranges) - .debug_aranges - 0x00000000 0x20 ./src/startup.o - .debug_aranges - 0x00000020 0x20 ./src/main.o - -.debug_pubnames - 0x00000000 0x1b - *(.debug_pubnames) - .debug_pubnames - 0x00000000 0x1b ./src/main.o - -.debug_info 0x00000000 0x1ae - *(.debug_info .gnu.linkonce.wi.*) - .debug_info 0x00000000 0x7b ./src/startup.o - .debug_info 0x0000007b 0x133 ./src/main.o - -.debug_abbrev 0x00000000 0x6f - *(.debug_abbrev) - .debug_abbrev 0x00000000 0x14 ./src/startup.o - .debug_abbrev 0x00000014 0x5b ./src/main.o - -.debug_line 0x00000000 0xd7 - *(.debug_line) - .debug_line 0x00000000 0x80 ./src/startup.o - .debug_line 0x00000080 0x57 ./src/main.o - -.debug_frame 0x00000000 0x24 - *(.debug_frame) - .debug_frame 0x00000000 0x24 ./src/main.o - -.debug_str - *(.debug_str) - -.debug_loc 0x00000000 0x1f - *(.debug_loc) - .debug_loc 0x00000000 0x1f ./src/main.o - -.debug_macinfo - *(.debug_macinfo) - -.debug_weaknames - *(.debug_weaknames) - -.debug_funcnames - *(.debug_funcnames) - -.debug_typenames - *(.debug_typenames) - -.debug_varnames - *(.debug_varnames) -OUTPUT(test_ram.elf elf32-littlearm) - -.ARM.attributes - 0x00000000 0x10 - .ARM.attributes - 0x00000000 0x10 ./src/startup.o - .ARM.attributes - 0x00000010 0x10 ./src/main.o - -Cross Reference Table - -Symbol File -_Main_Crystal ./src/startup.o -__bss_end__ ./src/startup.o -__bss_start__ ./src/startup.o -__ctors_end__ ./src/startup.o -__ctors_start__ ./src/startup.o -__data_start ./src/startup.o -__stack_abt_end__ ./src/startup.o -__stack_end__ ./src/startup.o -__stack_fiq_end__ ./src/startup.o -__stack_irq_end__ ./src/startup.o -__stack_svc_end__ ./src/startup.o -__stack_und_end__ ./src/startup.o -_edata ./src/startup.o -_etext ./src/startup.o -_start ./src/startup.o -libdebug ./src/startup.o -main ./src/main.o - ./src/startup.o diff --git a/testing/examples/STR912Test/test_rom.elf b/testing/examples/STR912Test/test_rom.elf Binary files differdeleted file mode 100644 index 8d840fd..0000000 --- a/testing/examples/STR912Test/test_rom.elf +++ /dev/null diff --git a/testing/examples/STR912Test/test_rom.hex b/testing/examples/STR912Test/test_rom.hex deleted file mode 100644 index 1c1283a..0000000 --- a/testing/examples/STR912Test/test_rom.hex +++ /dev/null @@ -1,28 +0,0 @@ -:10000000F8F09FE50000A0E10000A0E10000A0E101 -:100010000000A0E10000A0E10000A0E10000A0E1DC -:100020000000A0E10000A0E11503A0E30410A0E39C -:10003000001080E50210A0E3041080E50010A0E3AA -:100040000C1080E50218A0E3101080E51810A0E362 -:10005000181080E5A8009FE5A8109FE5001080E536 -:100060000608A0E3110F2FEED7F021E398D09FE50B -:10007000DBF021E394D09FE5D3F021E390D09FE51E -:10008000D1F021E38CD09FE5D2F021E388D09FE529 -:100090001FF021E384D09FE584A09FE584109FE5B5 -:1000A00084209FE584309FE5030052E104009134F1 -:1000B00004008234FBFFFF3A0000A0E370109FE5CC -:1000C0005C209FE5020051E104008134FCFFFF3A0F -:1000D00060009FE560109FE5010050E10400000A08 -:1000E000042090E403002DE932FF2FE10300BDE876 -:1000F000F8FFFFEAFFFFFFEB100000EAA861000035 -:10010000040000003420005C97010000000D000492 -:10011000000D0004000D00040009000400090004A3 -:100120000008000400000004A40100000000000416 -:100130000000000400000004A0010000A001000075 -:100140000CD04DE20130A0E300308DE50230A0E399 -:1001500004308DE50030A0E308308DE538309FE5B0 -:10016000002093E500309DE5023083E000308DE50E -:1001700000309DE5013083E200308DE504309DE5DF -:10018000013083E204308DE500209DE504309DE5DB -:10019000033082E008308DE5F4FFFFEAA0010000A3 -:0401A0000700000054 -:00000001FF diff --git a/testing/examples/STR912Test/test_rom.map b/testing/examples/STR912Test/test_rom.map deleted file mode 100644 index 0f31cea..0000000 --- a/testing/examples/STR912Test/test_rom.map +++ /dev/null @@ -1,280 +0,0 @@ - -Memory Configuration - -Name Origin Length Attributes -CODE 0x00000000 0x00080000 xr -DATA 0x04000000 0x00018000 rw -*default* 0x00000000 0xffffffff - -Linker script and memory map - -LOAD ./src/startup.o -LOAD ./src/main.o -START GROUP -LOAD d:/compiler/yagarto/bin/../lib/gcc/arm-elf/4.2.2\libgcc.a -LOAD d:/compiler/yagarto/bin/../lib/gcc/arm-elf/4.2.2/../../../../arm-elf/lib\libc.a -END GROUP - 0x00000400 _STACKSIZE = 0x400 - 0x00000100 _STACKSIZE_IRQ = 0x100 - 0x00000000 _STACKSIZE_FIQ = 0x0 - 0x00000400 _STACKSIZE_SVC = 0x400 - 0x00000000 _STACKSIZE_ABT = 0x0 - 0x00000000 _STACKSIZE_UND = 0x0 - 0x00000400 _HEAPSIZE = 0x400 - -.text 0x00000000 0x1a0 - CREATE_OBJECT_SYMBOLS - *(.vectors) - *(.init) - .init 0x00000000 0x140 ./src/startup.o - 0x000000fc _Main_Crystal - 0x00000000 _start - 0x000000f8 libdebug - *(.text .text.*) - .text 0x00000140 0x0 ./src/startup.o - .text 0x00000140 0x60 ./src/main.o - 0x00000140 main - *(.gnu.linkonce.t.*) - *(.glue_7t) - .glue_7t 0x000001a0 0x0 ./src/startup.o - .glue_7t 0x000001a0 0x0 ./src/main.o - *(.glue_7) - .glue_7 0x000001a0 0x0 ./src/startup.o - .glue_7 0x000001a0 0x0 ./src/main.o - *(.vfp11_veneer) - .vfp11_veneer 0x000001a0 0x0 ./src/startup.o - .vfp11_veneer 0x000001a0 0x0 ./src/main.o - *(.fini) - *(.gcc_except_table) - 0x000001a0 . = ALIGN (0x4) - -.ctors 0x000001a0 0x0 - 0x000001a0 PROVIDE (__ctors_start__, .) - *(SORT(.ctors.*)) - *(.ctors) - 0x000001a0 PROVIDE (__ctors_end__, .) - -.dtors 0x000001a0 0x0 - 0x000001a0 PROVIDE (__dtors_start__, .) - *(SORT(.dtors.*)) - *(.dtors) - 0x000001a0 PROVIDE (__dtors_end__, .) - -.rodata 0x000001a0 0x4 - *(.rodata .rodata.*) - .rodata 0x000001a0 0x4 ./src/main.o - *(.gnu.linkonce.r.*) - 0x000001a4 . = ALIGN (0x4) - -.init_array 0x000001a4 0x0 - *(.init) - *(.fini) - 0x000001a4 PROVIDE (__preinit_array_start, .) - *(.preinit_array) - 0x000001a4 PROVIDE (__preinit_array_end, .) - 0x000001a4 PROVIDE (__init_array_start, .) - *(SORT(.init_array.*)) - *(.init_array) - 0x000001a4 PROVIDE (__init_array_end, .) - 0x000001a4 PROVIDE (__fini_array_start, .) - *(.fini_array) - *(SORT(.fini_array.*)) - 0x000001a4 PROVIDE (__fini_array_end, .) - 0x000001a4 . = ALIGN (0x4) - 0x000001a4 __exidx_start = . - -.ARM.exidx - *(.ARM.exidx* .gnu.linkonce.armexidx.*) - 0x000001a4 __exidx_end = . - 0x000001a4 _etext = . - 0x000001a4 PROVIDE (etext, .) - -.data 0x04000000 0x0 load address 0x000001a4 - 0x04000000 __data_start = . - *(.data .data.*) - .data 0x04000000 0x0 ./src/startup.o - .data 0x04000000 0x0 ./src/main.o - *(.gnu.linkonce.d.*) - 0x04000000 . = ALIGN (0x4) - *(.fastrun .fastrun.*) - 0x04000000 . = ALIGN (0x4) - 0x04000000 _edata = . - 0x04000000 PROVIDE (edata, .) - -.bss 0x04000000 0x0 load address 0x000001a4 - 0x04000000 __bss_start = . - 0x04000000 __bss_start__ = . - *(.bss .bss.*) - .bss 0x04000000 0x0 ./src/startup.o - .bss 0x04000000 0x0 ./src/main.o - *(.gnu.linkonce.b.*) - *(COMMON) - 0x04000000 . = ALIGN (0x4) - 0x04000000 . = ALIGN (0x4) - 0x04000000 __bss_end__ = . - 0x04000000 _end = . - 0x04000000 PROVIDE (end, .) - -.heap 0x04000000 0x400 - 0x04000000 __heap_start__ = . - *(.heap) - 0x04000400 . = ((__heap_start__ + _HEAPSIZE) MAX_K .) - *fill* 0x04000000 0x400 00 - 0x04000400 __heap_end__ = (__heap_start__ + SIZEOF (.heap)) - -.stack 0x04000400 0x400 - 0x04000400 __stack_start__ = . - *(.stack) - 0x04000800 . = ((__stack_start__ + _STACKSIZE) MAX_K .) - *fill* 0x04000400 0x400 00 - 0x04000800 __stack_end__ = (__stack_start__ + SIZEOF (.stack)) - -.stack_irq 0x04000800 0x100 - 0x04000800 __stack_irq_start__ = . - *(.stack_irq) - 0x04000900 . = ((__stack_irq_start__ + _STACKSIZE_IRQ) MAX_K .) - *fill* 0x04000800 0x100 00 - 0x04000900 __stack_irq_end__ = (__stack_irq_start__ + SIZEOF (.stack_irq)) - -.stack_fiq 0x04000900 0x0 - 0x04000900 __stack_fiq_start__ = . - *(.stack_fiq) - 0x04000900 . = ((__stack_fiq_start__ + _STACKSIZE_FIQ) MAX_K .) - 0x04000900 __stack_fiq_end__ = (__stack_fiq_start__ + SIZEOF (.stack_fiq)) - -.stack_svc 0x04000900 0x400 - 0x04000900 __stack_svc_start__ = . - *(.stack_svc) - 0x04000d00 . = ((__stack_svc_start__ + _STACKSIZE_SVC) MAX_K .) - *fill* 0x04000900 0x400 00 - 0x04000d00 __stack_svc_end__ = (__stack_svc_start__ + SIZEOF (.stack_svc)) - -.stack_abt 0x04000d00 0x0 - 0x04000d00 __stack_abt_start__ = . - *(.stack_abt) - 0x04000d00 . = ((__stack_abt_start__ + _STACKSIZE_ABT) MAX_K .) - 0x04000d00 __stack_abt_end__ = (__stack_abt_start__ + SIZEOF (.stack_abt)) - -.stack_und 0x04000d00 0x0 - 0x04000d00 __stack_und_start__ = . - *(.stack_und) - 0x04000d00 . = ((__stack_und_start__ + _STACKSIZE_UND) MAX_K .) - 0x04000d00 __stack_und_end__ = (__stack_und_start__ + SIZEOF (.stack_und)) - -.stab - *(.stab) - -.stabstr - *(.stabstr) - -.stab.excl - *(.stab.excl) - -.stab.exclstr - *(.stab.exclstr) - -.stab.index - *(.stab.index) - -.stab.indexstr - *(.stab.indexstr) - -.comment 0x00000000 0x12 - *(.comment) - .comment 0x00000000 0x12 ./src/main.o - -.debug - *(.debug) - -.line - *(.line) - -.debug_srcinfo - *(.debug_srcinfo) - -.debug_sfnames - *(.debug_sfnames) - -.debug_aranges 0x00000000 0x40 - *(.debug_aranges) - .debug_aranges - 0x00000000 0x20 ./src/startup.o - .debug_aranges - 0x00000020 0x20 ./src/main.o - -.debug_pubnames - 0x00000000 0x1b - *(.debug_pubnames) - .debug_pubnames - 0x00000000 0x1b ./src/main.o - -.debug_info 0x00000000 0x1ae - *(.debug_info .gnu.linkonce.wi.*) - .debug_info 0x00000000 0x7b ./src/startup.o - .debug_info 0x0000007b 0x133 ./src/main.o - -.debug_abbrev 0x00000000 0x6f - *(.debug_abbrev) - .debug_abbrev 0x00000000 0x14 ./src/startup.o - .debug_abbrev 0x00000014 0x5b ./src/main.o - -.debug_line 0x00000000 0xd7 - *(.debug_line) - .debug_line 0x00000000 0x80 ./src/startup.o - .debug_line 0x00000080 0x57 ./src/main.o - -.debug_frame 0x00000000 0x24 - *(.debug_frame) - .debug_frame 0x00000000 0x24 ./src/main.o - -.debug_str - *(.debug_str) - -.debug_loc 0x00000000 0x1f - *(.debug_loc) - .debug_loc 0x00000000 0x1f ./src/main.o - -.debug_macinfo - *(.debug_macinfo) - -.debug_weaknames - *(.debug_weaknames) - -.debug_funcnames - *(.debug_funcnames) - -.debug_typenames - *(.debug_typenames) - -.debug_varnames - *(.debug_varnames) -OUTPUT(test_rom.elf elf32-littlearm) - -.ARM.attributes - 0x00000000 0x10 - .ARM.attributes - 0x00000000 0x10 ./src/startup.o - .ARM.attributes - 0x00000010 0x10 ./src/main.o - -Cross Reference Table - -Symbol File -_Main_Crystal ./src/startup.o -__bss_end__ ./src/startup.o -__bss_start__ ./src/startup.o -__ctors_end__ ./src/startup.o -__ctors_start__ ./src/startup.o -__data_start ./src/startup.o -__stack_abt_end__ ./src/startup.o -__stack_end__ ./src/startup.o -__stack_fiq_end__ ./src/startup.o -__stack_irq_end__ ./src/startup.o -__stack_svc_end__ ./src/startup.o -__stack_und_end__ ./src/startup.o -_edata ./src/startup.o -_etext ./src/startup.o -_start ./src/startup.o -libdebug ./src/startup.o -main ./src/main.o - ./src/startup.o |
