summaryrefslogtreecommitdiff
path: root/contrib/loaders/README
diff options
context:
space:
mode:
authorSpencer Oliver <ntfreak@users.sourceforge.net>2010-10-28 09:19:37 +0100
committerSpencer Oliver <ntfreak@users.sourceforge.net>2010-10-28 09:19:37 +0100
commit1fafb669c99744b986d85b5c4a4e276767898654 (patch)
treedc5679be536d36409df82a5b8d923514258896a6 /contrib/loaders/README
parent53228fbc2e61fd39f45a43e4be54e0121e608714 (diff)
downloadopenocd+libswd-1fafb669c99744b986d85b5c4a4e276767898654.tar.gz
openocd+libswd-1fafb669c99744b986d85b5c4a4e276767898654.tar.bz2
openocd+libswd-1fafb669c99744b986d85b5c4a4e276767898654.tar.xz
openocd+libswd-1fafb669c99744b986d85b5c4a4e276767898654.zip
contrib: add ram loader src code
Add src code for ram loaders to contrib directory. Signed-off-by: Spencer Oliver <ntfreak@users.sourceforge.net>
Diffstat (limited to 'contrib/loaders/README')
-rw-r--r--contrib/loaders/README33
1 files changed, 33 insertions, 0 deletions
diff --git a/contrib/loaders/README b/contrib/loaders/README
new file mode 100644
index 00000000..2b123cf6
--- /dev/null
+++ b/contrib/loaders/README
@@ -0,0 +1,33 @@
+Included in these directories are the src to the various ram loaders used
+within openocd.
+
+** target checksum loaders **
+
+checksum/armv4_5_crc.s :
+ - ARMv4 and ARMv5 checksum loader : see target/arm_crc_code.c:arm_crc_code
+
+checksum/armv7m_crc.s :
+ - ARMv7m checksum loader : see target/armv7m.c:cortex_m3_crc_code
+
+checksum/mips32.s :
+ - MIPS32 checksum loader : see target/mips32.c:mips_crc_code
+
+** target flash loaders **
+
+flash/pic32mx.s :
+ - Microchip PIC32 flash loader : see flash/nor/pic32mx.c:pic32mx_flash_write_code
+
+flash/stellaris.s :
+ - TI Stellaris flash loader : see flash/nor/stellaris.c:stellaris_write_code
+
+flash/stm32x.s :
+ - ST STM32 flash loader : see flash/nor/stm32x.c:stm32x_flash_write_code
+
+flash/str7x.s :
+ - ST STR7 flash loader : see flash/nor/str7x.c:str7x_flash_write_code
+
+flash/str9x.s :
+ - ST STR9 flash loader : see flash/nor/str9x.c:str9x_flash_write_code
+
+Spencer Oliver
+spen@spen-soft.co.uk