This change fixes a long-standing bug, whereby we do not set ret for an un-inited vector, which we should have done. <br>
Signed-off-by: Ronald G. Minnich <<a href="mailto:rminnich@gmail.com">rminnich@gmail.com</a>><br>
<br>
---<br>
<br>
Index: devices/emulator/biosemu.c<br>
===================================================================<br>
--- devices/emulator/biosemu.c  (revision 2470)<br>
+++ devices/emulator/biosemu.c  (working copy)<br>
@@ -122,6 +122,7 @@<br>
        case 0x6D:<br>
                if (getIntVect(num) == 0x0000) {<br>
                       
printk_debug("un-inited int vector\n");<br>
+                      
ret = 1;<br>
                }<br>
                if (getIntVect(num) == 0xFF065) {<br>
                       
//ret = int42_handler();<br>
<br>
<br>
<br>