Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

mov rcx, Console

call GetStdHandle
mov stdout,rax
mov rcx,stdout
mov rdx,1fh ;colocamos los atributos
call SetConsoleTextAttribute
mov rcx,stdout
lea rdx,mensaje
mov r8, lengthof mensaje
call WriteconsoleA

mov rcx,stdout
mov rdx,07h
call SetConsoleTextAttribute
add rbp,40
mov rax,nbytes

mov rcx,stdout
lea rdx,mensaje
call WriteconsoleA
mov rcx,0

;mov rax,5 ;rax 64 bits


;add rax,6
;mov suma,rax
;mov ecx,0 ;32 bits
;mov ax,3 ;16bits
;mov al,2 ;8bits
call ExitProcess

You might also like