summaryrefslogtreecommitdiff
path: root/memdisk/memdisk16.asm
diff options
context:
space:
mode:
Diffstat (limited to 'memdisk/memdisk16.asm')
-rw-r--r--memdisk/memdisk16.asm18
1 files changed, 16 insertions, 2 deletions
diff --git a/memdisk/memdisk16.asm b/memdisk/memdisk16.asm
index 692ed8b8..d73ddc5d 100644
--- a/memdisk/memdisk16.asm
+++ b/memdisk/memdisk16.asm
@@ -294,7 +294,7 @@ a20_kbc:
mov byte [A20Type], A20_KBC ; Starting KBC command sequence
- mov al,0D1h ; Command write
+ mov al,0D1h ; Write output port
out 064h, al
call empty_8042_uncond
@@ -302,6 +302,13 @@ a20_kbc:
out 060h, al
call empty_8042_uncond
+ ; Apparently the UHCI spec assumes that A20 toggle
+ ; ends with a null command (assumed to be for sychronization?)
+ ; Put it here to see if it helps anything...
+ mov al,0FFh ; Null command
+ out 064h, al
+ call empty_8042_uncond
+
; Verify that A20 actually is enabled. Do that by
; observing a word in low memory and the same word in
; the HMA until they are no longer coherent. Note that
@@ -424,12 +431,19 @@ a20d_fast:
;
a20d_kbc:
call empty_8042_uncond
+
mov al,0D1h
- out 064h, al ; Command write
+ out 064h, al ; Write output port
call empty_8042_uncond
+
mov al,0DDh ; A20 off
out 060h, al
call empty_8042_uncond
+
+ mov al,0FFh ; Null command/synchronization
+ out 064h, al
+ call empty_8042_uncond
+
; Wait a bit for it to take effect
a20d_snooze:
push cx