m1n1/src/aic.h
Hector Martin 4b4ae3ab90 aic: Add trivial AIC scaffolding, move regs to aic_regs.h
Signed-off-by: Hector Martin <marcan@marcan.st>
2021-08-23 17:01:33 +09:00

13 lines
175 B
C

/* SPDX-License-Identifier: MIT */
#ifndef AIC_H
#define AIC_H
#include "types.h"
extern u64 aic_base;
void aic_init(void);
void aic_set_sw(int irq, bool active);
#endif