summaryrefslogtreecommitdiff
path: root/core/bcopy32.inc
diff options
context:
space:
mode:
Diffstat (limited to 'core/bcopy32.inc')
-rw-r--r--core/bcopy32.inc18
1 files changed, 16 insertions, 2 deletions
diff --git a/core/bcopy32.inc b/core/bcopy32.inc
index 8f36d648..4ebbe3ca 100644
--- a/core/bcopy32.inc
+++ b/core/bcopy32.inc
@@ -413,7 +413,7 @@ a20_kbc:
mov byte [cs: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
@@ -421,6 +421,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
@@ -534,12 +541,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