소스 검색

- do not initialize the flags register on entry to the interrupt in the Intr/MsDos procedure (which is the TP-compatible behavior)

git-svn-id: branches/i8086@24058 -
nickysn 12 년 전
부모
커밋
102f929e99
1개의 변경된 파일0개의 추가작업 그리고 3개의 파일을 삭제
  1. 0 3
      rtl/msdos/prt0.asm

+ 0 - 3
rtl/msdos/prt0.asm

@@ -44,8 +44,6 @@ FPC_INTR:
         mov si, dx
         mov ax, word [si + 16]
         mov es, ax
-        mov ax, word [si + 18]  ; flags
-        push ax
         mov ax, word [si + 14]  ; ds
         push ax
         mov ax, word [si]
@@ -57,7 +55,6 @@ FPC_INTR:
         mov si, word [si + 10]
         
         pop ds
-        popf
         db 0CDh  ; opcode of INT xx
 int_number:
         db 255