Bitwise operations: Difference between revisions

m
Line 605:
IO.Put("NOT a: " & Fmt.Int(Word.Not(a)) & "\n");
c := a;
IO.Put("c LeftShift b: " & Fmt.Unsigned(Word.LeftShift(ac, b)) & "\n");
IO.Put("c RightShift b: " & Fmt.Unsigned(Word.RightShift(ac, b)) & "\n");
IO.Put("c LeftRotate b: " & Fmt.Unsigned(Word.LeftRotate(ac, b)) & "\n");
IO.Put("c RightRotate b: " & Fmt.Unsigned(Word.RightRotate(ac, b)) & "\n");
END Bitwise;
 
Anonymous user