From: Kevin O'Connor Date: Mon, 5 Sep 2016 17:49:18 +0000 (-0400) Subject: post: Map int 0x05 to entry point X-Git-Tag: rel-1.10.0~10 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=642db1905ab133007d7427b6758a2103fb09a19a;p=seabios.git post: Map int 0x05 to entry point int 0x05 was not assigned in the interrupt table - fix that. Signed-off-by: Kevin O'Connor --- 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));