Department of Electronics and Telecommunication (2020-2021) : Mini Project
Department of Electronics and Telecommunication (2020-2021) : Mini Project
State Diagram-
The objective is to reach the exit door without hitting any obstacle or monster
within 180 seconds.
To do that, the player has to pick up the key and open the exit door.
Dungeon Escape is a story-driven fitness game. You have been jailed for a reason you
don't remember but the only thing you kno is that you have to escape. But beware,
the dungeon is riddled with traps and obstacles. -
VHDL CODE-
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
--USE ieee.numeric_std.ALL;
ENTITY TB IS
END TB;
ARCHITECTURE behavior OF TB IS
-- Component Declaration for the Unit Under Test (UUT)
nreset : IN std_logic;
board_clk : IN std_logic;
u : IN std_logic;
d : IN std_logic;
r : IN std_logic;
l : IN std_logic;
);
END COMPONENT;
--Inputs
BEGIN
u => u,
d => d,
r => r,
l => l,
);
-- Clock process definitions
board_clk_process :process
begin
end process;
pixel_clk_process :process
begin
end process;
-- Stimulus process
stim_proc: process
begin
d<='0';
r<='0';
l<='0';
wait;
end process;
END;
OUTPUT-
CONCLUSION—The simple dungeon escape game project is written in VHDL code. The main
objective of this game is to is to reach the exit door without hitting any obstacle
or monster.