rsi.asm
上传用户:qddsws
上传日期:2022-06-22
资源大小:723k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  1. BITS 32
  2. [GLOBAL rsi_mouse]
  3.         [EXTERN bottom_mouse_rsi]
  4.         rsi_mouse:
  5.     ;            cli
  6. call bottom_mouse_rsi
  7.                 mov al,0x20
  8.                 out 0x20,al
  9.                 out 0xa0,al
  10.  ;               sti
  11.                 iretd
  12. [GLOBAL rsi_keyboard]
  13.         [EXTERN bottom_keyboard_rsi]
  14.         rsi_keyboard:
  15.    ;             cli
  16. call bottom_keyboard_rsi
  17.                 mov al,0x20
  18.                 out 0x20,al
  19.                 out 0xa0,al
  20.   ;              sti
  21.                 iretd
  22. [GLOBAL rsi_network]
  23.         [EXTERN bottom_network]
  24.         rsi_network:
  25.                 cli
  26. call bottom_network
  27.                 mov al,0x20
  28.                 out 0x20,al
  29.                 out 0xa0,al
  30.                sti
  31.                 iretd