aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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