Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

datapath unit: GCD calculator project

Status
Not open for further replies.

jessy_kjl

Newbie level 2
Joined
Sep 15, 2009
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,306
hi, i need help with my vhdl code:

entity DU is
Port ( gcd_inA, gcd_inB : in STD_LOGIC_VECTOR (3 downto 0);
selP0 : in STD_LOGIC;
selQ0 : in STD_LOGIC;
ldP : in STD_LOGIC;
ldQ : in STD_LOGIC;
ldG : in STD_LOGIC;
reset : in STD_LOGIC;
clrG : in STD_LOGIC;
opcode : in STD_LOGIC_VECTOR (1 downto 0);
clk : in STD_LOGIC;
gcd_out : out STD_LOGIC_VECTOR (3 downto 0);
Eq : out STD_LOGIC;
Lt : out STD_LOGIC;
data_outP, data_outQ, alu_out : buffer STD_LOGIC_VECTOR (3 downto 0));
end DU;

architecture Behavioral of DU is

begin

regP: process (ldP,selP0,clk,gcd_inA)
begin
if reset='1' then
data_outP <= "0000";
elsif clk'event and clk='1' then
if ldP ='1' then
if selP0 = '1' then
data_outP <= gcd_inA;
end if;
end if;
end if;
end process regP;

regQ: process (ldQ,selQ0,clk,gcd_inB)
begin
if reset='1' then
data_outQ <= "0000";
elsif clk'event and clk='1' then
if ldQ='1' then
if selQ0 = '1' then
data_outQ <= gcd_inB;
end if;
end if;
end if;
end process regQ;

regG: process (ldG,clrG,clk)
begin
if clrG='1' then
gcd_out <= "0000";
elsif clk'event and clk='1' then
if ldG='1' then
gcd_out <= data_outP;
end if;
end if;
end process regG;

ALU_module: process(data_outP,data_outQ,opcode)
begin
case opcode is
when "00" =>
alu_out <= data_outQ - data_outP;
when "01" =>
alu_out <= data_outQ - data_outQ;
when "10" =>
alu_out <= data_outP - data_outP;
when others =>
alu_out <= data_outP - data_outQ;
end case;
end process ALU_module;

--comparator;
Eq <= '1' when data_outP = data_outQ else '0' ;
Lt <= '1' when data_outP < data_outQ else '0' ;

end Behavioral;


in the rtl schematic, the buffers appear as output. why is this so?
thanks in advance!
 

I think this project belong to UMP lecturer. Are you trying to violate the engineering ethics? Good luck trying on your own.
 

aredill said:
I think this project belong to UMP lecturer. Are you trying to violate the engineering ethics? Good luck trying on your own.

yes, it is a labsheet given by my lecturer and since i am out of idea despite many attempts, here i am, seeking help. isn't it what this forum's all about? to discuss and share? fyi i came up with the coding myself with of course some assistance with from friends. therefore, i really do not think that i've violated the engineering ethics.

cheers ;p
 

hehe....jess lyn eh?
juz kidding maa.....dun emo2.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top