Skip to content
Snippets Groups Projects
Commit 545a38d7 authored by John Hodge's avatar John Hodge
Browse files

Modules/armv7 - Added stub IRQ_AddHandler to GIC

parent 5f104551
No related merge requests found
...@@ -2,6 +2,6 @@ ...@@ -2,6 +2,6 @@
# #
OBJ := gic.o OBJ := gic.o
NAME := armv7_GIC NAME := GIC
-include ../Makefile.tpl -include ../Makefile.tpl
/*
* ARMv7 GIC Support
* - By John Hodge (thePowersGang)
*
* gic.c
* - GIC Core
*/
#include <acess.h>
#include <modules.h>
// === PROTOTYPES ===
int GIC_Install(char **Arguments);
// === GLOBALS ===
MODULE_DEFINE(0, 0x100, armv7_GIC, GIC_Install, NULL, NULL);
// === CODE ===
int GIC_Install(char **Arguments)
{
return MODULE_ERR_OK;
}
int IRQ_AddHandler(int IRQ, void (*Handler)(int, void*), void *Ptr)
{
Log_Warning("GIC", "TODO: Implement IRQ_AddHandler");
return 0;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment