summaryrefslogtreecommitdiff
path: root/src/test/lib/tests/test_and.sail
blob: 7c9cd800795d2b7af6330f19efa51286179a5d0d (plain)
1
2
3
4
5
6
7
function unit test () = {
  test_assert ("bitwise_and", (0b0101 & 0b0011) == 0b0001);
  test_assert ("bitwise_and_00", (bitzero & bitzero) == bitzero);
  test_assert ("bitwise_and_01", (bitzero & bitone)  == bitzero);
  test_assert ("bitwise_and_10", (bitone  & bitzero) == bitzero);
  test_assert ("bitwise_and_11", (bitone  & bitone)  == bitone);
}