aboutsummaryrefslogtreecommitdiffstats
path: root/src/bit_ops.adb
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2025-01-11 12:14:28 -0500
committerClyne Sullivan <clyne@bitgloo.com>2025-01-11 12:14:28 -0500
commit8fa66b024f91e47d8b5273e8c85ec5f60fe42d5b (patch)
tree1e3da4ec5bdfbbcb36ebd30ab9c055c45f50f279 /src/bit_ops.adb
parentcf8c3a51cb01b64ad2bc700fdd2b4906ef864877 (diff)
initial upload
Diffstat (limited to 'src/bit_ops.adb')
-rw-r--r--src/bit_ops.adb31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/bit_ops.adb b/src/bit_ops.adb
new file mode 100644
index 0000000..032ff6c
--- /dev/null
+++ b/src/bit_ops.adb
@@ -0,0 +1,31 @@
+package body Bit_Ops is
+ function Bitwise_Or (X, Y : Byte) return Byte is
+ X_Bits : Pixel with Address => X'Address;
+ Y_Bits : Pixel with Address => Y'Address;
+ Bits : aliased Pixel;
+ Bits_Byte : Byte with Address => Bits'Address;
+ begin
+ Bits := X_Bits or Y_Bits;
+ return Bits_Byte;
+ end Bitwise_Or;
+
+ function Bitwise_And (X, Y : Byte) return Byte is
+ X_Bits : Pixel with Address => X'Address;
+ Y_Bits : Pixel with Address => Y'Address;
+ Bits : aliased Pixel;
+ Bits_Byte : Byte with Address => Bits'Address;
+ begin
+ Bits := X_Bits and Y_Bits;
+ return Bits_Byte;
+ end Bitwise_And;
+
+ function Bitwise_Xor (X, Y : Byte) return Byte is
+ X_Bits : Pixel with Address => X'Address;
+ Y_Bits : Pixel with Address => Y'Address;
+ Bits : aliased Pixel;
+ Bits_Byte : Byte with Address => Bits'Address;
+ begin
+ Bits := X_Bits xor Y_Bits;
+ return Bits_Byte;
+ end Bitwise_Xor;
+end Bit_Ops;