Created
June 22, 2013 16:24
-
-
Save evanmiller/5841466 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fold_down(Acc) when Acc bsr 16 > 0 -> | |
fold_down((Acc band 16#FFFF) + (Acc bsr 16)); | |
fold_down(Acc) -> Acc. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment