diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2025-01-11 12:14:28 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2025-01-11 12:14:28 -0500 |
commit | 8fa66b024f91e47d8b5273e8c85ec5f60fe42d5b (patch) | |
tree | 1e3da4ec5bdfbbcb36ebd30ab9c055c45f50f279 /src/bit_ops.ads | |
parent | cf8c3a51cb01b64ad2bc700fdd2b4906ef864877 (diff) |
initial upload
Diffstat (limited to 'src/bit_ops.ads')
-rw-r--r-- | src/bit_ops.ads | 9 |
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; |