Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 262 Bytes

README.md

File metadata and controls

19 lines (17 loc) · 262 Bytes

4.3

;long sum(long *start, long count)
; start in %rdi, count in %rsi

sum:
    xorq %rax, %rax
    andq %rsi, %rsi
    jmp test
loop:
    mrmovq (%rdi), %r10
    addq %r10, %rax
    iaddq $8, %rdi
    iaddq $-1, %rsi
test:
    jne loop
    ret