diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-09-16 17:53:47 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-09-16 17:53:47 +0000 |
commit | 0220bb792bbc3f054832269c6bba1727bdf92d97 (patch) | |
tree | c53a7cc1e6b201994ab5c125c3b5848abb2a6266 /os | |
parent | c145c837da830279f68f6ba0431d856cc6bf67f2 (diff) | |
download | ChibiOS-0220bb792bbc3f054832269c6bba1727bdf92d97.tar.gz ChibiOS-0220bb792bbc3f054832269c6bba1727bdf92d97.tar.bz2 ChibiOS-0220bb792bbc3f054832269c6bba1727bdf92d97.zip |
Fixed bug 3566342.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4673 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/ports/cosmic/STM8/chcore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/ports/cosmic/STM8/chcore.h b/os/ports/cosmic/STM8/chcore.h index 895dc717e..ffbac228b 100644 --- a/os/ports/cosmic/STM8/chcore.h +++ b/os/ports/cosmic/STM8/chcore.h @@ -218,7 +218,7 @@ struct stm8_startctx { * @note @p id can be a function name or a vector number depending on the
* port implementation.
*/
-#define PORT_IRQ_HANDLER(id) @far @interrupt void vector##id(void)
+#define PORT_IRQ_HANDLER(id) @far @interrupt @svlreg void vector##id(void)
/**
* @brief Port-related initialization code.
|