summaryrefslogtreecommitdiff
path: root/projects/01
diff options
context:
space:
mode:
authorFrederick Yin <fkfd@fkfd.me>2022-08-18 19:51:01 +0800
committerFrederick Yin <fkfd@fkfd.me>2022-08-18 19:51:01 +0800
commit05cdd93b973587dd123b58ad0944c0e51088638e (patch)
tree898e61dc6b0f3f5d56bc1d38722028dd412f6f40 /projects/01
parent444007cd01665a11b584c410be8de1cdd25c51b9 (diff)
Remove all .out files
Diffstat (limited to 'projects/01')
-rw-r--r--projects/01/And.out5
-rw-r--r--projects/01/DMux.out5
-rw-r--r--projects/01/DMux4Way.out9
-rw-r--r--projects/01/DMux8Way.out17
-rw-r--r--projects/01/Mux.out9
-rw-r--r--projects/01/Mux16.out9
-rw-r--r--projects/01/Mux4Way16.out9
-rw-r--r--projects/01/Mux8Way16.out17
-rw-r--r--projects/01/Not.out0
-rw-r--r--projects/01/Not16.out6
-rw-r--r--projects/01/Or.out5
-rw-r--r--projects/01/Or8Way.out6
-rw-r--r--projects/01/Xor.out5
13 files changed, 0 insertions, 102 deletions
diff --git a/projects/01/And.out b/projects/01/And.out
deleted file mode 100644
index 8199ca5..0000000
--- a/projects/01/And.out
+++ /dev/null
@@ -1,5 +0,0 @@
-| a | b | out |
-| 0 | 0 | 0 |
-| 0 | 1 | 0 |
-| 1 | 0 | 0 |
-| 1 | 1 | 1 |
diff --git a/projects/01/DMux.out b/projects/01/DMux.out
deleted file mode 100644
index 9a92ec0..0000000
--- a/projects/01/DMux.out
+++ /dev/null
@@ -1,5 +0,0 @@
-| in | sel | a | b |
-| 0 | 0 | 0 | 0 |
-| 0 | 1 | 0 | 0 |
-| 1 | 0 | 1 | 0 |
-| 1 | 1 | 0 | 1 |
diff --git a/projects/01/DMux4Way.out b/projects/01/DMux4Way.out
deleted file mode 100644
index 9dd708f..0000000
--- a/projects/01/DMux4Way.out
+++ /dev/null
@@ -1,9 +0,0 @@
-| in | sel | a | b | c | d |
-| 0 | 00 | 0 | 0 | 0 | 0 |
-| 0 | 01 | 0 | 0 | 0 | 0 |
-| 0 | 10 | 0 | 0 | 0 | 0 |
-| 0 | 11 | 0 | 0 | 0 | 0 |
-| 1 | 00 | 1 | 0 | 0 | 0 |
-| 1 | 01 | 0 | 1 | 0 | 0 |
-| 1 | 10 | 0 | 0 | 1 | 0 |
-| 1 | 11 | 0 | 0 | 0 | 1 |
diff --git a/projects/01/DMux8Way.out b/projects/01/DMux8Way.out
deleted file mode 100644
index ebf9304..0000000
--- a/projects/01/DMux8Way.out
+++ /dev/null
@@ -1,17 +0,0 @@
-| in | sel | a | b | c | d | e | f | g | h |
-| 0 | 000 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
-| 0 | 001 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
-| 0 | 010 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
-| 0 | 011 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
-| 0 | 100 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
-| 0 | 101 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
-| 0 | 110 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
-| 0 | 111 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
-| 1 | 000 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
-| 1 | 001 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
-| 1 | 010 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
-| 1 | 011 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
-| 1 | 100 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
-| 1 | 101 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
-| 1 | 110 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
-| 1 | 111 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
diff --git a/projects/01/Mux.out b/projects/01/Mux.out
deleted file mode 100644
index e4b51c6..0000000
--- a/projects/01/Mux.out
+++ /dev/null
@@ -1,9 +0,0 @@
-| a | b | sel | out |
-| 0 | 0 | 0 | 0 |
-| 0 | 0 | 1 | 0 |
-| 0 | 1 | 0 | 0 |
-| 0 | 1 | 1 | 1 |
-| 1 | 0 | 0 | 1 |
-| 1 | 0 | 1 | 0 |
-| 1 | 1 | 0 | 1 |
-| 1 | 1 | 1 | 1 |
diff --git a/projects/01/Mux16.out b/projects/01/Mux16.out
deleted file mode 100644
index d2e472e..0000000
--- a/projects/01/Mux16.out
+++ /dev/null
@@ -1,9 +0,0 @@
-| a | b | sel | out |
-| 0000000000000000 | 0000000000000000 | 0 | 0000000000000000 |
-| 0000000000000000 | 0000000000000000 | 1 | 0000000000000000 |
-| 0000000000000000 | 0001001000110100 | 0 | 0000000000000000 |
-| 0000000000000000 | 0001001000110100 | 1 | 0001001000110100 |
-| 1001100001110110 | 0000000000000000 | 0 | 1001100001110110 |
-| 1001100001110110 | 0000000000000000 | 1 | 0000000000000000 |
-| 1010101010101010 | 0101010101010101 | 0 | 1010101010101010 |
-| 1010101010101010 | 0101010101010101 | 1 | 0101010101010101 |
diff --git a/projects/01/Mux4Way16.out b/projects/01/Mux4Way16.out
deleted file mode 100644
index 659176d..0000000
--- a/projects/01/Mux4Way16.out
+++ /dev/null
@@ -1,9 +0,0 @@
-| a | b | c | d | sel | out |
-| 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 00 | 0000000000000000 |
-| 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 01 | 0000000000000000 |
-| 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 10 | 0000000000000000 |
-| 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 11 | 0000000000000000 |
-| 0001001000110100 | 1001100001110110 | 1010101010101010 | 0101010101010101 | 00 | 0001001000110100 |
-| 0001001000110100 | 1001100001110110 | 1010101010101010 | 0101010101010101 | 01 | 1001100001110110 |
-| 0001001000110100 | 1001100001110110 | 1010101010101010 | 0101010101010101 | 10 | 1010101010101010 |
-| 0001001000110100 | 1001100001110110 | 1010101010101010 | 0101010101010101 | 11 | 0101010101010101 |
diff --git a/projects/01/Mux8Way16.out b/projects/01/Mux8Way16.out
deleted file mode 100644
index 11ff518..0000000
--- a/projects/01/Mux8Way16.out
+++ /dev/null
@@ -1,17 +0,0 @@
-| a | b | c | d | e | f | g | h | sel | out |
-| 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 000 | 0000000000000000 |
-| 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 001 | 0000000000000000 |
-| 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 010 | 0000000000000000 |
-| 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 011 | 0000000000000000 |
-| 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 100 | 0000000000000000 |
-| 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 101 | 0000000000000000 |
-| 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 110 | 0000000000000000 |
-| 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 0000000000000000 | 111 | 0000000000000000 |
-| 0001001000110100 | 0010001101000101 | 0011010001010110 | 0100010101100111 | 0101011001111000 | 0110011110001001 | 0111100010011010 | 1000100110101011 | 000 | 0001001000110100 |
-| 0001001000110100 | 0010001101000101 | 0011010001010110 | 0100010101100111 | 0101011001111000 | 0110011110001001 | 0111100010011010 | 1000100110101011 | 001 | 0010001101000101 |
-| 0001001000110100 | 0010001101000101 | 0011010001010110 | 0100010101100111 | 0101011001111000 | 0110011110001001 | 0111100010011010 | 1000100110101011 | 010 | 0011010001010110 |
-| 0001001000110100 | 0010001101000101 | 0011010001010110 | 0100010101100111 | 0101011001111000 | 0110011110001001 | 0111100010011010 | 1000100110101011 | 011 | 0100010101100111 |
-| 0001001000110100 | 0010001101000101 | 0011010001010110 | 0100010101100111 | 0101011001111000 | 0110011110001001 | 0111100010011010 | 1000100110101011 | 100 | 0101011001111000 |
-| 0001001000110100 | 0010001101000101 | 0011010001010110 | 0100010101100111 | 0101011001111000 | 0110011110001001 | 0111100010011010 | 1000100110101011 | 101 | 0110011110001001 |
-| 0001001000110100 | 0010001101000101 | 0011010001010110 | 0100010101100111 | 0101011001111000 | 0110011110001001 | 0111100010011010 | 1000100110101011 | 110 | 0111100010011010 |
-| 0001001000110100 | 0010001101000101 | 0011010001010110 | 0100010101100111 | 0101011001111000 | 0110011110001001 | 0111100010011010 | 1000100110101011 | 111 | 1000100110101011 |
diff --git a/projects/01/Not.out b/projects/01/Not.out
deleted file mode 100644
index e69de29..0000000
--- a/projects/01/Not.out
+++ /dev/null
diff --git a/projects/01/Not16.out b/projects/01/Not16.out
deleted file mode 100644
index ae2ad1d..0000000
--- a/projects/01/Not16.out
+++ /dev/null
@@ -1,6 +0,0 @@
-| in | out |
-| 0000000000000000 | 1111111111111111 |
-| 1111111111111111 | 0000000000000000 |
-| 1010101010101010 | 0101010101010101 |
-| 0011110011000011 | 1100001100111100 |
-| 0001001000110100 | 1110110111001011 |
diff --git a/projects/01/Or.out b/projects/01/Or.out
deleted file mode 100644
index 8010688..0000000
--- a/projects/01/Or.out
+++ /dev/null
@@ -1,5 +0,0 @@
-| a | b | out |
-| 0 | 0 | 0 |
-| 0 | 1 | 1 |
-| 1 | 0 | 1 |
-| 1 | 1 | 1 |
diff --git a/projects/01/Or8Way.out b/projects/01/Or8Way.out
deleted file mode 100644
index b9f8d99..0000000
--- a/projects/01/Or8Way.out
+++ /dev/null
@@ -1,6 +0,0 @@
-| in | out |
-| 00000000 | 0 |
-| 11111111 | 1 |
-| 00010000 | 1 |
-| 00000001 | 1 |
-| 00100110 | 1 |
diff --git a/projects/01/Xor.out b/projects/01/Xor.out
deleted file mode 100644
index 73a8d0c..0000000
--- a/projects/01/Xor.out
+++ /dev/null
@@ -1,5 +0,0 @@
-| a | b | out |
-| 0 | 0 | 0 |
-| 0 | 1 | 1 |
-| 1 | 0 | 1 |
-| 1 | 1 | 0 |