Advertisement
carlosmfp

crear cuadrado

Mar 16th, 2024
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MIX Assembler 0.67 KB | Source Code | 0 0
  1. format binary as 'img'
  2. ORG 7C00h
  3.  
  4.   MOV AX, 13h
  5.   INT 10h
  6.  
  7.   MOV AX, 0xA000
  8.   MOV ES, AX
  9.  
  10.   CALL pintar_bg
  11.   CALL cuadrado
  12.  
  13.   JMP $
  14.  
  15.   cuadrado:
  16.     MOV AL, [negro]
  17.     MOV DI, 320*75+135
  18.  
  19.     MOV CX, [n]
  20.    
  21.     pintar_filas:
  22.       PUSH CX
  23.  
  24.       MOV CX, [n]
  25.       pintar_cols:
  26.         MOV [ES:DI], AL
  27.         INC DI
  28.       LOOP pintar_cols
  29.       ADD DI, 320-50
  30.       POP CX
  31.     LOOP pintar_filas
  32.  
  33.  
  34.  
  35.   RET
  36.  
  37.   pintar_bg:
  38.     MOV CX, 320*200
  39.     MOV DI, 0
  40.     MOV AL, [blanco]
  41.  
  42.     bucle:
  43.       MOV [ES:DI], AL
  44.       INC DI
  45.       LOOP bucle
  46.  
  47.   RET
  48.  
  49. blanco db 00001111b
  50. negro db 00000000b
  51. n dw 50
  52.  
  53. times 510-($-$$) db 0
  54.   dw 0xAA55
  55.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement