* commands/i386/pc/drivemap_int13h.S: add more comments
+2009-06-12 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * commands/i386/pc/drivemap_int13h.S: add more comments
+
2009-06-11 Pavel Roskin <proski@gnu.org>
* Makefile.in (uninstall): Uninstall manuals.
pop %bx
pop %ax
+ /* If the call isn't ah=0x8 or ah=0x15 we must restore %dx. */
cmpb $0x8, %ah
jz norestore
cmpb $0x15, %ah
mov %sp, %bp
tail:
-
+ /* Save new flags below %esp so the caller will recieve new flags. */
pushf
pop %dx
mov %dx, 8(%bp)
push %bp
mov %sp, %bp
- /* Save %dx. */
+ /* Save %dx. So it won't be restored to original value. */
mov %dx, 2(%bp)
jmp tail