mirror of https://github.com/ARMmbed/mbed-os.git
14 lines
362 B
C
14 lines
362 B
C
/* mbed Microcontroller Library - cmsis_nvic for TMPM3HQ
|
|
* Copyright (c) 2011 ARM Limited. All rights reserved.
|
|
*
|
|
* CMSIS-style functionality to support dynamic vectors
|
|
*/
|
|
|
|
#ifndef MBED_CMSIS_NVIC_H
|
|
#define MBED_CMSIS_NVIC_H
|
|
|
|
#define NVIC_NUM_VECTORS (182)
|
|
#define NVIC_RAM_VECTOR_ADDRESS 0x20000000 // Location of vectors in RAM
|
|
|
|
#endif
|