
Please Solve As soon as
Solve quickly I get you thumbs up directly
Thank's
Abdul-Rahim Taysir
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
ENTITY Counter_BCD IS
port( clk: in std_logic;
--data_in : in std_logic_vector(3 downto 0);
reset: in std_logic;
---load: in std_logic;
count: out std_logic_vector(3 downto 0)
);
end Counter_BCD;
architecture logic of Counter_BCD is
COMPONENT BCD_1_digit IS
port( clk: in std_logic;
--data_in : in std_logic_vector(3 downto 0);
clear: in std_logic;
---load: in std_logic;
data_out: out std_logic_vector(3 downto 0)
);
END COMPONENT;
signal D : std_logic;
signal data1,data2: std_logic_vector(3 downto 0);
BEGIN
-- Instantiate the Unit Under Test (UUT)
uut: BCD_1_digit PORT MAP (
clk => clk,
clear => reset,
data_out => data1
);
uut1: BCD_1_digit PORT MAP (
clk => D,
clear => reset,
data_out => data2
);
process(clk,reset)
begin
if data1 = "1001" then
D<='1';
else
D<='0';
end if;
count <= data2 & data1;
end process;
end logic;
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
--library ieee;
--use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
ENTITY BCD_1_digit IS
port( clk: in std_logic;
--data_in : in std_logic_vector(3 downto 0);
clear: in std_logic;
---load: in std_logic;
data_out: out std_logic_vector(3 downto 0)
);
end BCD_1_digit;
architecture logic of BCD_1_digit is
begin
process(clk)
variable reg: std_logic_vector(3 downto 0):="0000";
begin
if (clk'event and clk = '1') then -- otherwise update the
states
if (clear = '1') then -- go to state zero if reset
reg:="0000";
else
if(reg = "1010") then
reg:="0000";
else
reg:=reg+1;
end if;
reg:=reg;
end if;
else
null;
end if;
data_out<=reg;
end process;
end logic;
-- testbench:
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
ENTITY tb_counter IS
END tb_counter;
ARCHITECTURE behavior1 OF tb_counter IS
-- Component Declaration for the Unit Under Test (UUT)
COMPONENT Counter_BCD IS
port( clk: in std_logic;
--data_in : in std_logic_vector(3 downto 0);
reset: in std_logic;
---load: in std_logic;
count: out std_logic_vector(3 downto 0)
);
END COMPONENT;
--Inputs
signal clk : std_logic ;
signal reset : std_logic ;
--Outputs
signal count : std_logic_vector(7 downto 0);
BEGIN
-- Instantiate the Unit Under Test (UUT)
uut: Counter_BCD PORT MAP (
clk => clk,
reset => reset,
count => count
);
-- Stimulus process
stim_proc: process
begin
clk <='0';reset<='0';
wait for 10ns;
clk<='1'; reset<='1';
wait for 10ns;
reset<='0';
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
wait for 10ns;
clk<='1';
wait for 10ns;
clk<='0';
end process;
end behavior1;
Please Solve As soon as Solve quickly I get you thumbs up directly Thank's Abdul-Rahim Taysir...
Please Solve As soon as
Solve quickly I get you thumbs up directly
Thank's
Abdul-Rahim Taysir
#] Rx) = x3 - 2cosx secant method 2 significant 2.1, 2.3 10 PM) (x-2)(x+) Accelarate the convergence at p=2, numerically
Please Solve As soon as
Solve quickly I get you thumbs up directly
Thank's
Abdul-Rahim Taysir
Problem TWO 3 1 1] Find the eigenvalues and the corresponding eigenvectors of the matrix 0 0 0 0. 1 0
Please Solve As soon as
Solve quickly I get you thumbs up directly
Thank's
Abdul-Rahim Taysir
Solve the following DE xy'"' + 3y" = 0
Please Solve As soon as
Solve quickly I get you thumbs up directly
Thank's
Abdul-Rahim Taysir
Solve the following DE y (4) + 5y" + 4y = sin x + cos2x
Please Solve As soon as
Solve quickly I get you thumbs up directly
Thank's
Abdul-Rahim Taysir
Solve the following DE using an integrating factor dx + + 6-siny) dy = 0
Please Solve As soon as
Solve quickly I get you thumbs up directly
Thank's
Abdul-Rahim Taysir
Solve the following IVP 4y = y = xex/2, y(0) = 1, y'(0) = 0
Please Solve As soon as
Solve quickly I get you thumbs up directly
Thank's
Abdul-Rahim Taysir
Find the eigenvalues and the corresponding eigenvectors of the matrix 3 2 4 -2 -2 -4 2 1
Please Solve As soon as
Solve quickly I get you thumbs up directly
Thank's
Abdul-Rahim Taysir
Exercise 6. Double integral in rectangular coordinates (16 pts 10 pts) Let I = $T, sea dydz
Please Solve As soon as
Solve quickly I get you thumbs up directly
Thank's
Abdul-Rahim Taysir
Suppose that 8 cards, of which four are red, two are green and two are blue, are placed at random in 8 envelopes (-5 ,Two envelops are selected at random . (بريدي 1. find the probability that the envelops have red cards 2. find the probability that they have cards of the same colors? PA ce 7 A- B I
Please Solve As soon as
Solve quickly I get you thumbs up directly
Thank's
Abdul-Rahim Taysir
Let AB and C be three disjoint events defined over the same place S. Assume AUBUC = S, P(A) = 0.4, and P(B) = 0.2. 1) Compute P(C). [The answer should be a number rounded to five decimal places, don't use symbols such as %] 2) Compute the P(AUB). [The answer should be a number rounded to five decimal places, don't use symbols such...