aboutsummaryrefslogtreecommitdiffstats
path: root/ee2361
diff options
context:
space:
mode:
authorRossTheRoss <mstrapp@protonmail.com>2020-02-12 10:45:15 -0600
committerRossTheRoss <mstrapp@protonmail.com>2020-02-12 10:45:15 -0600
commita79faa20deba5409fe2d2acb9a59e3f55a393b7b (patch)
tree4133e4134a679755b790cd1d7ab96393b73283a0 /ee2361
parentMerge branch 'master' of github.com:RosstheRoss/TestingFun (diff)
downloadhomework-a79faa20deba5409fe2d2acb9a59e3f55a393b7b.tar
homework-a79faa20deba5409fe2d2acb9a59e3f55a393b7b.tar.gz
homework-a79faa20deba5409fe2d2acb9a59e3f55a393b7b.tar.bz2
homework-a79faa20deba5409fe2d2acb9a59e3f55a393b7b.tar.lz
homework-a79faa20deba5409fe2d2acb9a59e3f55a393b7b.tar.xz
homework-a79faa20deba5409fe2d2acb9a59e3f55a393b7b.tar.zst
homework-a79faa20deba5409fe2d2acb9a59e3f55a393b7b.zip
?
Diffstat (limited to 'ee2361')
-rw-r--r--ee2361/TEST.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/ee2361/TEST.cpp b/ee2361/TEST.cpp
new file mode 100644
index 0000000..b59631c
--- /dev/null
+++ b/ee2361/TEST.cpp
@@ -0,0 +1,11 @@
+#include <iostream>
+int xorMask(int Byte) {
+ Byte = Byte ^ 8;
+ return Byte;
+}
+
+int main() {
+ int a = xorMask(15);
+ std::cout << a << std::endl;
+ return 0;
+} \ No newline at end of file