Skip to content

Commit

Permalink
Fix for #111
Browse files Browse the repository at this point in the history
  • Loading branch information
kmackay committed Jun 20, 2017
1 parent a76bd3f commit 601bd11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asm_avr.inc
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ uECC_VLI_API uECC_word_t uECC_vli_sub(uECC_word_t *result,

"adc %[borrow], %[borrow] \n\t" /* Store carry bit in borrow. */

: "+z" (r), "+x" (left), "+y" (right), [i] "+r" (i),
: "+z" (r), "+x" (left), "+y" (right), [i] "+r" (num_words),
[borrow] "+r" (borrow), [left] "=&r" (left_byte), [right] "=&r" (right_byte)
:
: "cc"
Expand Down

0 comments on commit 601bd11

Please sign in to comment.