From a7bf3acccad469b62113a5991be56c23cf29941f Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 6 Nov 2022 01:19:28 +0200 Subject: [PATCH] Support multiple interrupt hooks --- include/driver.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/driver.hpp b/include/driver.hpp index 2a78bc9..fba70a2 100644 --- a/include/driver.hpp +++ b/include/driver.hpp @@ -45,7 +45,7 @@ namespace Driver { unsigned long DriverUID; void *Address; - DriverInterruptHook *InterruptHook; + DriverInterruptHook *InterruptHook[16]; }; class Driver