0

次のコードを投稿しています。このコードの基本的な目的は、トラップフラグを1に設定した後、画面に文字zを印刷することです。トラップフラグが設定されると、プログラムは1つを実行する必要があります。命令とトラップ、私は無限ループを持つ単純なトラップISRを作成しました。プログラムのkbisrという名前のキーボードisrでF2キーのスキャンコードを確認できるように、F2キーを押すとこの無限ループが壊れます。これは私がこのプログラムから達成したい機能ですが、それを実行していません。このコードをチェックして、私がそれで何が間違っているのか教えてください。これがコードです

[org 0x100]
jmp start

flag: db 0

kbisr:  push ax
 push cs
 pop ds

 in al,0x60 ; reading keyboard port
 cmp al,60 ; comparing it with scan code of F2
 jne skip ; if not F2 then do nothing

 mov byte[flag],1


skip: pop ax

; signlaing end of interrupt
 mov al,0x20
 out 0x20,al
 iret

; subroutin to clear the screen
clrscr: push ax
 push bx
 push es
 push di
 push cx

 mov ax,0xb800
 mov es,ax
 mov cx,4000
 mov ax,0x0720
 rep stosw
 pop cx
 pop di
 pop es
 pop bx
 pop ax
 ret

; the trap ISR

trap: push ax
 push bx
 push cx
 push dx
 push es
 push ss
 push ds
 push cs
 push di
 push si
 push bp


push cs
pop ds  ; initializing the data segment
sti
call clrscr 
mov byte[flag],0
l1: cmp byte[flag],0 ; infinite loop, waiting for F2
 je l1
 pop bp
 pop si
 pop di
 pop cs
 pop ds
 pop ss
 pop es
 pop dx
 pop cx
 pop bx
 pop ax

 iret

start: 

 mov ax,0
 mov es,ax

; hooking the trap interrupt

 mov word[es:1*4],trap
 mov word[es:1*4+1],cs
;now hooking the keyboard interrupt
 cli
 mov word[es:9*4],kbisr
 mov word[es:9*4+2],cs
 sti
 mov cx,0xb800
 mov es,cx
 mov di,10
 mov ch,0x05
 mov cl,'z'
;setting the trap flag to 1
 pushf
 pop bx
 or bx,0x100
 push bx
 popf
; now trap flag is on

 mov word[es: di],cx
 add di,2
 mov word[es: di],cx
 add di,2
;residing the program in memory after termination so this is a TSR
 mov dx,start
 add dx,15
 shr dx,4
 mov ax,0x3100
 int 0x21
4

1 に答える 1

1

この行は間違っています:

 mov word[es:1*4+1],cs

そのはず:

 mov word[es:1*4+2],cs

編集: とは

pop cs

するべきですか?

実際、nasm がこれについて文句を言わなかったことに驚いています。

于 2010-07-21T18:15:07.457 に答える