[SeaBIOS] [PATCH 10/10] post: Map int 0x05 to entry point

Kevin O'Connor kevin at koconnor.net
Mon Sep 5 20:36:11 CEST 2016


int 0x05 was not assigned in the interrupt table - fix that.

Signed-off-by: Kevin O'Connor <kevin at koconnor.net>
---
 src/post.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/post.c b/src/post.c
index 2c4f12b..2a06d44 100644
--- a/src/post.c
+++ b/src/post.c
@@ -47,6 +47,7 @@ ivt_init(void)
 
     // Initialize software handlers.
     SET_IVT(0x02, FUNC16(entry_02));
+    SET_IVT(0x05, FUNC16(entry_05));
     SET_IVT(0x10, FUNC16(entry_10));
     SET_IVT(0x11, FUNC16(entry_11));
     SET_IVT(0x12, FUNC16(entry_12));
-- 
2.5.5




More information about the SeaBIOS mailing list