]> xenbits.xensource.com Git - people/andrewcoop/seabios.git/commitdiff
post: Map int 0x05 to entry point
authorKevin O'Connor <kevin@koconnor.net>
Mon, 5 Sep 2016 17:49:18 +0000 (13:49 -0400)
committerKevin O'Connor <kevin@koconnor.net>
Mon, 12 Sep 2016 14:22:10 +0000 (10:22 -0400)
int 0x05 was not assigned in the interrupt table - fix that.

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
src/post.c

index 2c4f12b9e34a32e3b3a844aa1566f766aa8d5d1c..2a06d44d21c0258d4d122d83e6c9c4080746a59c 100644 (file)
@@ -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));