aboutsummaryrefslogtreecommitdiffstats
path: root/src/bit_ops.ads
blob: b975a8af05d71b6a18fa1dc1c6f8929ca4e98631 (plain)
1
2
3
4
5
6
7
8
9
with ISA;

package Bit_Ops is
   use ISA;

   function Bitwise_Or  (X, Y : Byte) return Byte;
   function Bitwise_And (X, Y : Byte) return Byte;
   function Bitwise_Xor (X, Y : Byte) return Byte;
end Bit_Ops;