From 8fa66b024f91e47d8b5273e8c85ec5f60fe42d5b Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 11 Jan 2025 12:14:28 -0500 Subject: initial upload --- src/bit_ops.ads | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/bit_ops.ads (limited to 'src/bit_ops.ads') 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; -- cgit v1.2.3