Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
1 & 2. Thanks for the suggestions.
3. << is logical since it does preserve the sign bit. >> is arithmatic which preserve sign bit. >>> is logical right, which should solve your problem.
4. I will investigate that.
5. It's my bad. That is an mistake on my part.
6. Answer to 3 should solve it.
7. Related.
Fixed. Thanks.
I revised the description.
It should be -> c := (a OR b) AND ((NOT a) shifted left by 2 bits)