<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/</link>
    <language>en-us</language>

    <title>ecos-v3_0-branch: packages/hal/arm/arch/current/src/vectors.S history</title>
    <description>packages/hal/arm/arch/current/src/vectors.S revision history</description>
    <item>
    <title>* src/vectors.S: Use .type xxx, function everywhere where</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/a501465abec6/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[* src/vectors.S: Use .type xxx, function everywhere where<br/>
        a global associated with code is defined. Otherwise objdump<br/>
        treats it as data.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Sat, 14 Feb 2009 02:49:09 +0000</pubDate>
</item>
<item>
    <title>Fix thinko in last checkin.</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/0f319c78e393/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Fix thinko in last checkin.]]></description>
    <author>&#110;&#105;&#99;&#107;&#103;</author>
    <pubDate>Mon, 09 Feb 2009 16:46:42 +0000</pubDate>
</item>
<item>
    <title>* src/vectors.S (start): The loop to initialize BSS was using a</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/4db2c98d89f8/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[* src/vectors.S (start): The loop to initialize BSS was using a<br/>
	BLS to terminate. This caused an extra zero to be stored beyond<br/>
	the end of __bss_end. Usually this is benign, but when __bss_end<br/>
	is at the very top of RAM, and the hardware generates an exception<br/>
	for illegal accesses, this can crash the program before it even<br/>
	starts. The fix is to use a BLT instructions which will terminate<br/>
	the loop 1 word earlier.]]></description>
    <author>&#110;&#105;&#99;&#107;&#103;</author>
    <pubDate>Mon, 09 Feb 2009 15:34:49 +0000</pubDate>
</item>
<item>
    <title>Update all copyright banners to reflect FSF ownership; fix and improve licence text.</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/74dbf4c3f2e1/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Update all copyright banners to reflect FSF ownership; fix and improve licence text.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Thu, 29 Jan 2009 17:47:46 +0000</pubDate>
</item>
<item>
    <title>* src/arm.ld: Discard C++ EH-related sections when we can't</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/4ca9d5dac8b0/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[* src/arm.ld: Discard C++ EH-related sections when we can't<br/>
	possibly support C++ EH (no CYGPKG_LIBSTDCXX).<br/>
<br/>
	* src/hal_mk_defs.c: Also export HAL_BREAKINST_THUMB and<br/>
	HAL_BREAKINST_ARM to asm.<br/>
	* src/arm.ld: Revise alignment yet further. Maintain ALIGN_LMA<br/>
	at original value, but define alignment for use in compliance<br/>
	with AAPCS. Expand explanatory comments.<br/>
	(SECTION_text): Comply with AAPCS alignment when inserting<br/>
	.ARM.extab and .ARM.exidx.<br/>
<br/>
	* src/arm.ld: Rework alignment further to improve backward<br/>
	compatibility. Improve commenting on alignment issues.<br/>
<br/>
	* src/arm.ld: We need to be double-word aligned sometimes, so align<br/>
	LMA the same way too.<br/>
<br/>
	* cdl/hal_arm.cdl (CYGBLD_HAL_ARM_EABI): EABI has a different C++<br/>
	EH implementation, so don't let LIBSTDCXX use the default one.<br/>
<br/>
	* src/vectors.S: Correctly conditionalise overwriting (or not)<br/>
	of reset vector.<br/>
<br/>
	* src/hal_misc.c (CONSTRUCTORS_END): Fix fencepost error.<br/>
<br/>
	* include/arm_stub.h: Remove CYG_HAL_GDB_ENTER_CRITICAL_IO_REGION<br/>
	and CYG_HAL_GDB_LEAVE_CRITICAL_IO_REGION defines which should remain<br/>
	as their defaults.<br/>
	* src/arm.ld: Add SECTION_hal_vsr_table for targets which need the<br/>
	VSR table in a different location to the rest of the fixed vectors.<br/>
	* src/vectors.S: Allow hal_platform_setup.h to define<br/>
	CYGHWR_HAL_ARM_SEPARATE_VSR_TABLE to allow move of hal_vsr_table<br/>
	to its own section at a different address.<br/>
<br/>
	* src/hal_mk_defs.c (main): Export exception vector info<br/>
	to asm.<br/>
	* src/arm.ld: Remove previous EABI support and instead use a<br/>
	different approach incorporating into existing SECTION macros for<br/>
	better backward compatibility.<br/>
	* src/hal_misc.c (cyg_hal_invoke_constructors): Rewrite init_array<br/>
	support for EABI.<br/>
	There is now nothing copyrightable remaining from Chris Zimman's<br/>
	earlier work in this package.<br/>
<br/>
	* cdl/hal_arm.cdl: Rename EABI option. Set default from<br/>
	toolchain prefix and flags. Rewrite description.<br/>
	* include/hal_arch.h: Rename exception vector addresses to<br/>
	names less likely to potentially clash with applications.<br/>
	* src/vectors.S: Update vector address names in line with<br/>
	hal_arch.h change. Rename CYGNUM_HAL_VECTOR_TABLE -&gt;<br/>
	CYGHWR_HAL_VECTOR_TABLE_BASE.<br/>
<br/>
	Some of the following changes were inspired by work from Chris<br/>
	Zimman. Further changes were also provided, but have not been<br/>
	included because either they are cosmetic (whitespace changes<br/>
	etc.) and thus will only make it more difficult to merge in future<br/>
	updates from public eCos code base in future, increase code size<br/>
	for those who don't need it, or break compatibility with public<br/>
	eCos.<br/>
	* cdl/hal_arm.cdl: Add EABI build option.<br/>
	* include/hal_arch.h: Add extra CPSR definitions, and exception<br/>
	vector addresses.<br/>
	* src/arm.ld: Add EABI support.<br/>
	* src/hal_misc.c: Add EABI constructor support.<br/>
	* src/vectors.S: Allow variant/processor/platform to specify<br/>
	alternate vector table base. Use pretty names from hal_arch.h<br/>
	for vector offset/addresses.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 11 Nov 2008 04:28:45 +0000</pubDate>
</item>
<item>
    <title>Fix for boot vectors on LPC2xxx platforms - on behalf of Sergei Gavrikov and Wang Cui</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/f0b2da61ab63/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Fix for boot vectors on LPC2xxx platforms - on behalf of Sergei Gavrikov and Wang Cui]]></description>
    <author>&#103;&#116;&#104;&#111;&#109;&#97;&#115;</author>
    <pubDate>Sun, 04 Feb 2007 00:16:42 +0000</pubDate>
</item>
<item>
    <title>* src/vectors.S: disable FIQ in IRQ handler to fix race condition</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/0141a9e24d21/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[* src/vectors.S: disable FIQ in IRQ handler to fix race condition<br/>
       recursively entering IRQ handler through FIQ handler. Remove<br/>
       unreferenced handle_IRQ_or_FIQ label.]]></description>
    <author>&#97;&#115;&#108;</author>
    <pubDate>Thu, 09 Feb 2006 16:47:39 +0000</pubDate>
</item>
<item>
    <title>arm/arch/current/src/vectors.S: Allow DSRs in non-kernel configuration.</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/a10cfd6a2ddc/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[arm/arch/current/src/vectors.S: Allow DSRs in non-kernel configuration.]]></description>
    <author>&#106;&#97;&#110;&#105;</author>
    <pubDate>Tue, 23 Nov 2004 14:11:14 +0000</pubDate>
</item>
<item>
    <title>2003-10-23  Thomas Koeller  &lt;thomas.koeller@baslerweb.com&gt;</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/8758da1a0278/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[2003-10-23  Thomas Koeller  &lt;thomas.koeller@baslerweb.com&gt;<br/>
<br/>
	* src/vectors.S: Acknowlege spurious interrupts.]]></description>
    <author>&#110;&#105;&#99;&#107;&#103;</author>
    <pubDate>Tue, 28 Oct 2003 18:08:06 +0000</pubDate>
</item>
<item>
    <title>Fix exception debug in THUMB mode - from Thomas Koeller</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/1750695510ac/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Fix exception debug in THUMB mode - from Thomas Koeller]]></description>
    <author>&#103;&#116;&#104;&#111;&#109;&#97;&#115;</author>
    <pubDate>Tue, 14 Oct 2003 13:51:48 +0000</pubDate>
</item>
<item>
    <title>Fix CYGOPT_HAL_ARM_PRESERVE_SVC_SPSR handling</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/04b94baa3683/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Fix CYGOPT_HAL_ARM_PRESERVE_SVC_SPSR handling]]></description>
    <author>&#109;&#115;&#97;&#108;&#116;&#101;&#114;</author>
    <pubDate>Mon, 30 Jun 2003 12:16:16 +0000</pubDate>
</item>
<item>
    <title>HAL enhancements from Pierre Habraken</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/609c8b1447ee/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[HAL enhancements from Pierre Habraken]]></description>
    <author>&#109;&#115;&#97;&#108;&#116;&#101;&#114;</author>
    <pubDate>Tue, 06 May 2003 21:00:18 +0000</pubDate>
</item>
<item>
    <title>* src/vectors.S (handle_IRQ_or_FIQ): Tweak below to be conditional on</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/282a39769954/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[* src/vectors.S (handle_IRQ_or_FIQ): Tweak below to be conditional on<br/>
	__thumb__.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Wed, 30 Apr 2003 20:02:41 +0000</pubDate>
</item>
<item>
    <title>* vectors.S (handle_IRQ_or_FIQ):</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/802a526cd4ac/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[* vectors.S (handle_IRQ_or_FIQ):<br/>
	Use thumb-aware call to hal_spurious_IRQ.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Wed, 30 Apr 2003 13:35:06 +0000</pubDate>
</item>
<item>
    <title>Fix a thumb build problem, and switch to arm-elf-gcc -mthumb rather</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/b4d06891fe1a/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Fix a thumb build problem, and switch to arm-elf-gcc -mthumb rather<br/>
than thumb-elf-gcc]]></description>
    <author>&#98;&#97;&#114;&#116;&#118;</author>
    <pubDate>Tue, 15 Apr 2003 10:14:54 +0000</pubDate>
</item>
<item>
    <title>ARM exception handler fix</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/e17d1cf55283/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[ARM exception handler fix]]></description>
    <author>&#109;&#115;&#97;&#108;&#116;&#101;&#114;</author>
    <pubDate>Thu, 29 Aug 2002 11:49:48 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2002-05-23-21:39:14-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/d2c90368aeef/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2002-05-23-21:39:14-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Thu, 23 May 2002 22:59:51 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2002-05-20-20:11:54-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/e0c0827131d1/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2002-05-20-20:11:54-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Mon, 20 May 2002 22:19:26 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-07-20-10:24:43-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/cd45958b28ff/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2001-07-20-10:24:43-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 20 Jul 2001 10:23:16 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-06-08-21:11:51-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/ac086aa3217e/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2001-06-08-21:11:51-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Sun, 10 Jun 2001 19:35:23 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-06-01-18:52:13-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/0d0f03f76f6a/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2001-06-01-18:52:13-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 01 Jun 2001 22:16:29 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-05-18-01:30:05-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/511f4dc167f6/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2001-05-18-01:30:05-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 18 May 2001 06:32:28 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-04-24-11:22:42-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/f2545e5de153/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2001-04-24-11:22:42-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Wed, 25 Apr 2001 23:22:52 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-04-06-18:28:36-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/b65ec671dd4c/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2001-04-06-18:28:36-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 06 Apr 2001 19:06:06 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-03-29-21:44:39-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/b939e9cada46/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2001-03-29-21:44:39-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 06 Apr 2001 17:20:13 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-02-26-23:18:05-GMT</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/e2d866e32dac/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2001-02-26-23:18:05-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 27 Feb 2001 01:21:45 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-02-14-01:27:14-GMT</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/f935b880e96c/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2001-02-14-01:27:14-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Thu, 15 Feb 2001 18:18:11 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-02-12-23:44:24-GMT</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/25e238959bae/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2001-02-12-23:44:24-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 13 Feb 2001 01:23:16 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-01-26-06:43:02-GMT</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/f0e3fb000de8/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2001-01-26-06:43:02-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 26 Jan 2001 08:15:27 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-01-12-06:43:03-GMT</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/8f2f7615e727/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2001-01-12-06:43:03-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 12 Jan 2001 08:11:46 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-12-21-14:18:40-GMT</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/2e9a636d9de9/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2000-12-21-14:18:40-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 22 Dec 2000 02:37:28 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-10-31-00:30:36-GMT</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/0ae0bc38e387/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2000-10-31-00:30:36-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 31 Oct 2000 20:53:09 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-07-21-21:01:39-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/02ea4320376c/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2000-07-21-21:01:39-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 21 Jul 2000 21:34:11 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-07-14-22:00:02-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/84e4bde58b26/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2000-07-14-22:00:02-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Mon, 17 Jul 2000 14:42:27 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-07-04-20:42:44-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/ff3f181b64bd/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2000-07-04-20:42:44-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 04 Jul 2000 20:17:21 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-06-23-16:41:10-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/95f3e12a6327/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2000-06-23-16:41:10-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 23 Jun 2000 17:06:31 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-06-06-05:24:42-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/b15c60e34c84/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2000-06-06-05:24:42-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 06 Jun 2000 05:12:17 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-04-07-07:52:29-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/2085233a121a/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2000-04-07-07:52:29-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 07 Apr 2000 07:45:04 +0000</pubDate>
</item>
<item>
    <title>eCos v1.3.1 merged from eCos master repository on 2000-03-27-23:22:51-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/435cced73e2f/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[eCos v1.3.1 merged from eCos master repository on 2000-03-27-23:22:51-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 28 Mar 2000 14:10:45 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-02-11-15:46:40-GMT</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/c5536bad4c24/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2000-02-11-15:46:40-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 11 Feb 2000 16:47:32 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-02-02-19:16:44-GMT</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/bf00f99aec69/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2000-02-02-19:16:44-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Wed, 02 Feb 2000 19:57:02 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-01-28-04:28:11-GMT</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/c38311975d4f/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 2000-01-28-04:28:11-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 28 Jan 2000 04:59:39 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-12-10-07:47:04-GMT</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/6e51d764f8f1/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 1999-12-10-07:47:04-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 10 Dec 1999 15:30:44 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-12-01-18:03:05-GMT</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/755351606154/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 1999-12-01-18:03:05-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Wed, 01 Dec 1999 18:33:37 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-11-19-22:24:39-GMT</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/f10165814f1e/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 1999-11-19-22:24:39-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 19 Nov 1999 23:37:56 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-11-02-17:02:15-GMT</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/a0774359f013/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 1999-11-02-17:02:15-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 02 Nov 1999 20:57:07 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-10-19-18:55:31-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/797268ecc331/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 1999-10-19-18:55:31-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 19 Oct 1999 19:19:52 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-10-01-07:47:04-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/a3cc6665b684/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 1999-10-01-07:47:04-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 01 Oct 1999 13:25:47 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-09-23-20:10:25-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/e7ba79f6d3a8/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 1999-09-23-20:10:25-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Thu, 23 Sep 1999 19:52:27 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-09-12-15:40:34-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/e97d78785e2d/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 1999-09-12-15:40:34-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Sun, 12 Sep 1999 15:26:05 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-09-02-16:26:10-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/29bc183297e1/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 1999-09-02-16:26:10-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Thu, 02 Sep 1999 16:11:22 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-08-09-17:04:48-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/18ee5a9c102e/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 1999-08-09-17:04:48-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Mon, 09 Aug 1999 16:37:19 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-07-23-05:47:06-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/4741a3c3496a/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 1999-07-23-05:47:06-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 23 Jul 1999 15:20:15 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-07-16-05:47:06-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/306eee292492/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 1999-07-16-05:47:06-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 16 Jul 1999 21:54:32 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-07-02-23:17:07-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/5f5102441818/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 1999-07-02-23:17:07-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 02 Jul 1999 15:44:37 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-06-18-15:25:04-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/4f2df4ab82c8/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 1999-06-18-15:25:04-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 18 Jun 1999 07:59:09 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-06-11-17:05:41-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/01ce82f3e11a/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 1999-06-11-17:05:41-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 11 Jun 1999 09:36:56 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-05-29-00:13:11-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/d3fbcdfa1b2f/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 1999-05-29-00:13:11-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 28 May 1999 16:43:09 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-05-21-22:05:54-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/ece80412419a/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 1999-05-21-22:05:54-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 21 May 1999 15:09:30 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-05-14-19:27:43-BST</title>
    <link>https://hg.ecoscentric.com/ecos-v3_0-branch/log/d376b777e2ce/packages/hal/arm/arch/current/src/vectors.S</link>
    <description><![CDATA[Merge from eCos master repository on 1999-05-14-19:27:43-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 14 May 1999 12:20:00 +0000</pubDate>
</item>

  </channel>
</rss>
