aboutsummaryrefslogtreecommitdiffstats
path: root/src/bit_ops.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/bit_ops.ads')
-rw-r--r--src/bit_ops.ads9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/bit_ops.ads b/src/bit_ops.ads
new file mode 100644
index 0000000..b975a8a
--- /dev/null
+++ b/src/bit_ops.ads
@@ -0,0 +1,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;