b1f30e1f72
Signed-off-by: Chloe M <chloe@mensia.org>
16 lines
310 B
C
16 lines
310 B
C
/*
|
|
* Copyright (c) 2026, Chloe M.
|
|
* Provided under the BSD-3 clause.
|
|
*
|
|
* Description: High-level interrupt management
|
|
* Author: Chloe M.
|
|
*/
|
|
|
|
#ifndef _MACHINE_INTR_H_
|
|
#define _MACHINE_INTR_H_ 1
|
|
|
|
/* Interrupt priority class shift operand */
|
|
#define IPRI_CLASS_SHIFT 4
|
|
|
|
#endif /* !_MACHINE_INTR_H_ */
|