Advertisement
Guest User

Untitled

a guest
May 30th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  numbers STR '0123456789', TXT_END
  2.  
  3.  MOV R1, M[STATS]; R1 Guarda o valor das estatisticas
  4.  MOV R2, numbers; R2 aponta pra numbers
  5.  MOV R3, 0064h; 100
  6.  Loop:   CMP R3, R0; Loop
  7.          JMP.Z foobar; endereco qualquer
  8.          MOV R4, R3 ; Copia o valor de 100
  9.          MOV R5, R1 ; Copia o valor da estatistica
  10.          DIV R4, R5 ; R4 agora guarda o primeiro digito de R1
  11.          MOV R5, 000Ah
  12.          DIV R3, R5; Decrementa R3 por um fator de 10
  13.          MOV R6, R2
  14.          ADD R6, R4
  15.          PRINT R6 ; Escreve no LCD
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement