int 0x05 was not assigned in the interrupt table - fix that.
Signed-off-by: Kevin O'Connor kevin@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));