the rax register mov rcx, 5 ; Load the value 5 into the rcx register add rax, rcx ; Add the value in rcx to the value in
; rax, and store the result in rax (17)
mov rax, 12 ; Load the value 5 into the rax register mov rcx, 5 ; Load the value 12 into the rcx register sub rax, rcx ; Subtract the value in rcx from the value
; in rax, and store the result in rax (7)
mov rax, 7 ; Load the value 7 into the rax register inc rax ; Increment the value in rax by 1 (8)
mov rax, 7 ; Load the value 7 into the rax register dec rax ; Decrement the value in rax by 1 (6) Arithmetic