Я следовал этому уроку о том, как проверить и включить линию A20.Я думаю, что понимаю, но кто-то может уточнить это для меня, пожалуйста?
Комментарии, которые уже были в этом уроке, начинаются ; <comment>
,
Мои комментарии начинаются ;<comment>
; The following code is public domain licensed
[bits 16]
; Function: check_a20
;
; Purpose: to check the status of the a20 line in a completely self-contained state-preserving way.
; The function can be modified as necessary by removing push's at the beginning and their
; respective pop's at the end if complete self-containment is not required.
;
; Returns: 0 in ax if the a20 line is disabled (memory wraps around)
; 1 in ax if the a20 line is enabled (memory does not wrap around)
check_a20:
pushf ;Backup the current flags onto the stack
;Backup the below registers onto the stack
push ds ;|
push es ;|
push di ;|
push si ;-----
cli ;Disable interupts
xor ax, ax ; ax = 0
mov es, ax ;es = ax
not ax ; ax = 0xFFFF
mov ds, ax ; ds = ax
mov di, 0x0500 ;Boot signature part one (0x55)
mov si, 0x0510 ;Boot signature part two (0xAA)
mov al, byte [es:di] ;al = value at AA:55
push ax ;Backup ax register onto the stack
mov al, byte [ds:si] ;al = value at 55:AA
push ax ;Backup al onto the stack
mov byte [es:di], 0x00 ;Memory location AA:55 = 0
mov byte [ds:si], 0xFF ;Memory location at 55:AA = 0xFF
cmp byte [es:di], 0xFF ;Does value at AA:55 = 0xFF? If so, this means A20 is disabled
pop ax ;Restore saved ax register
mov byte [ds:si], al ;Set 55:AA to al
pop ax ;Restore ax register
mov byte [es:di], al ;set AA:55 to al
mov ax, 0 ;Return status of this function = 0 (Disabled)
je check_a20__exit ;A20 is disabled. Go to check_a20__exit
mov ax, 1 ;Return status of this function = 1 (Enabled)
check_a20__exit:
;Backup registers
pop si
pop di
pop es
pop ds
popf ;Backup flags
ret ;Return
Если я не понимаю некоторые разделы, не могли бы вы объяснить, почему?