Advertisement
carlosmfp

contar_tecla_presionada

Mar 16th, 2024
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MIX Assembler 0.79 KB | Source Code | 0 0
  1. format binary as 'img'
  2. org 7C00h
  3.  
  4.     mov ax, 3h
  5.     int 10h
  6.  
  7.     push es
  8.  
  9.     cli
  10.  
  11.     xor ax, ax
  12.     xor di, di
  13.     mov es, ax
  14.  
  15.     mov ax, timer
  16.     mov [es:8*4], ax
  17.     mov [es:8*4+2], cs
  18.  
  19.     mov ax, teclado
  20.     mov [es:9*4], ax
  21.     mov [es:9*4+2], cs
  22.  
  23.     sti
  24.     pop es
  25.  
  26.     mov ax, B800h
  27.     mov es, ax
  28.  
  29.  
  30.     jmp $
  31.  
  32.     timer:
  33.         cmp [inicio_key], 0
  34.         je salir_timer
  35.         dec [time]
  36.         jnz salir_timer
  37.         mov [time], 20  
  38.  
  39.         salir_timer:
  40.             mov al, 20H
  41.             out 20h, al
  42.     iret
  43.  
  44.     teclado:
  45.         in al, 60H
  46.         cmp al, 127
  47.         jbe salir_teclado
  48.  
  49.         salir_teclado:
  50.         mov al, 20h
  51.         out 20h, al
  52.     iret
  53.  
  54. count   db 0
  55. time    db 18
  56.  
  57. times 510-($-$$) db 0
  58.     dw 0xAA55
  59.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement