bit-hack/nano-script

Add increment operator to reduce assembly footprint

Closed this issue · 1 comments

A common language idiom is v = v + 1 which could be expressed v += 1, and reduced to one assembly instruction instead of 4.

I did as of commit: 2bff688