You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
611 B
C++
32 lines
611 B
C++
/**
|
|
* @file handlers.hpp
|
|
* @brief Interrupt service routine handlers.
|
|
*
|
|
* Copyright (C) 2021 Clyne Sullivan
|
|
*
|
|
* Distributed under the GNU GPL v3 or later. You should have received a copy of
|
|
* the GNU General Public License along with this program.
|
|
* If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef STMDSP_HANDLERS_HPP
|
|
#define STMDSP_HANDLERS_HPP
|
|
|
|
#include "ch.h"
|
|
|
|
extern "C" {
|
|
|
|
__attribute__((naked))
|
|
void port_syscall(struct port_extctx *ctxp, uint32_t n);
|
|
|
|
__attribute__((naked))
|
|
void MemManage_Handler();
|
|
|
|
__attribute__((naked))
|
|
void HardFault_Handler();
|
|
|
|
}
|
|
|
|
#endif // STMDSP_HANDLERS_HPP
|
|
|