aboutsummaryrefslogtreecommitdiff
path: root/computer-organization-experiment
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-11-17 17:22:29 +0800
committercrupest <crupest@outlook.com>2021-11-17 17:22:29 +0800
commita80df838667eb5015b83e93169c6cad197c61aa4 (patch)
tree1ac551851924e94c32c798c26c81b351edfa0dc7 /computer-organization-experiment
parent0b1b43294e8afbf41eefa215b3eb86b81d6b9475 (diff)
downloadlife-a80df838667eb5015b83e93169c6cad197c61aa4.tar.gz
life-a80df838667eb5015b83e93169c6cad197c61aa4.tar.bz2
life-a80df838667eb5015b83e93169c6cad197c61aa4.zip
....
Diffstat (limited to 'computer-organization-experiment')
-rw-r--r--computer-organization-experiment/.DS_Storebin6148 -> 0 bytes
-rw-r--r--computer-organization-experiment/multiplexer_1_2.vhdl2
-rw-r--r--computer-organization-experiment/multiplexer_32_2.vhdl2
-rw-r--r--computer-organization-experiment/multiplexer_8_2.vhdl2
4 files changed, 3 insertions, 3 deletions
diff --git a/computer-organization-experiment/.DS_Store b/computer-organization-experiment/.DS_Store
deleted file mode 100644
index 218d033..0000000
--- a/computer-organization-experiment/.DS_Store
+++ /dev/null
Binary files differ
diff --git a/computer-organization-experiment/multiplexer_1_2.vhdl b/computer-organization-experiment/multiplexer_1_2.vhdl
index 5f73d6a..3949e63 100644
--- a/computer-organization-experiment/multiplexer_1_2.vhdl
+++ b/computer-organization-experiment/multiplexer_1_2.vhdl
@@ -15,6 +15,6 @@ begin
else
Y <= A0;
end if;
- wait for 5 ns;
+ wait for 1 ps;
end process b;
end behaviour;
diff --git a/computer-organization-experiment/multiplexer_32_2.vhdl b/computer-organization-experiment/multiplexer_32_2.vhdl
index 917e0e3..563874d 100644
--- a/computer-organization-experiment/multiplexer_32_2.vhdl
+++ b/computer-organization-experiment/multiplexer_32_2.vhdl
@@ -15,6 +15,6 @@ begin
else
Y <= A0;
end if;
- wait for 5 ns;
+ wait for 1 ps;
end process b;
end behaviour;
diff --git a/computer-organization-experiment/multiplexer_8_2.vhdl b/computer-organization-experiment/multiplexer_8_2.vhdl
index 5fffbf4..d9e80f8 100644
--- a/computer-organization-experiment/multiplexer_8_2.vhdl
+++ b/computer-organization-experiment/multiplexer_8_2.vhdl
@@ -15,6 +15,6 @@ begin
else
Y <= A0;
end if;
- wait for 5 ns;
+ wait for 1 ps;
end process b;
end behaviour;