From cc838f907ec2174c48cb32765155b7c566384c39 Mon Sep 17 00:00:00 2001 From: Ulf Wohlers Date: Fri, 8 Nov 2002 14:12:42 +0000 Subject: [PATCH] Added Idle Callback in Int 1a, get systen time Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@488 --- src/ints/bios.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ints/bios.cpp b/src/ints/bios.cpp index a3c5db35..e206f103 100644 --- a/src/ints/bios.cpp +++ b/src/ints/bios.cpp @@ -30,6 +30,7 @@ static Bitu INT1A_Handler(void) { switch (reg_ah) { case 0x00: /* Get System time */ { + CALLBACK_Idle(); Bit32u ticks=mem_readd(BIOS_TIMER); reg_al=0; /* Midnight never passes :) */ reg_cx=(Bit16u)(ticks >> 16);