IAR-Toolchain files
--------------------------------------------------

+---SrcIAR
   +---stm32f10x_vector.c
   
   +---library
       +---src
           +---...
       +---inc
           +---...

+---header
   +---asmdefs.h
+---recources
    +---FlashSTM32F10x.d79
    +---lnkarm_flash.xcl 


updates for use by pC/OS
--------------------------------------------------

* in "stm32f10x_vector.c" 


        extern void OSPendSV_ISR(void);
        extern void OSTickISR(void);


    ...
    OSPendSV_ISR,                           // The PendSV handler
    OSTickISR,                              // The SysTick handler
    ...




