1/* Copyright (c) 2024 Michael Hope
2 *
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6#include <offsets.h>
7#include <zephyr/toolchain.h>
8
9/* Exports */
10GTEXT(__soc_is_irq)
11GTEXT(__soc_handle_irq)
12
13SECTION_FUNC(exception.other, __soc_is_irq)
14	csrr a0, mcause
15	srli a0, a0, 31
16	ret
17
18SECTION_FUNC(exception.other, __soc_handle_irq)
19	ret
20