Solve Simple VHDL Problem: Get 20/20 on Exam

  • Thread starter Thread starter Shahil
  • Start date Start date
Click For Summary
The discussion revolves around a VHDL exam question that the user found challenging, resulting in a low score. The user attempted to create an entity for a bus but is uncertain about the correctness of their implementation, particularly regarding the output variable 'f'. They also expressed confusion about how to structure the second question, especially concerning control signals and register programming. The user is seeking guidance to improve their understanding of VHDL to perform better in future assessments. Clarification on these concepts is crucial for mastering VHDL programming.
Shahil
Messages
115
Reaction score
21

Homework Statement



Hey there ... I got this VHDL problem as an exam question and it kinda freaked me out .. had no idea where to even begin and hence, got like 2 marks out of 20.

I do want to know how to program these though:

Here are the questions:

q31.jpg

q32.jpg

Homework Equations



Well, it's VHDL .. use what you like I guess .. but keep it simple as possible.

The Attempt at a Solution



My attempt at Q1 (which I think is wrong)

Entity Bus is
Begin
port(write1, write2, write3: in std_logic;
wdata1, wdata2, wdata3: in bit_vector(7 downto 0);
f: out bit_vector(7 downto 0));
-- The f variable is what I think is wrong.
End Bus;

Architecture Behaviour of Bus is
Begin
f <= wdata1 when write1 = "1" else
wdata2 when write2 = "1" else
wdata3 when write3 = "1";
End Behaviour;

--

For Q2 .. I was VERY unsure ... What I did was treat the entire structure as the Entity with the inputs:
io_port_data, address_rf, write_rf
I'm not sure if the control signals (load_accumulator, bus_rf, bus_alu, bus_ioport) are to be declared in the Entity.

What confused me is that this Bus has output ports, unlike the Entity described above. Also, I don't know how to program the the registers. This question made up 20 percent of the exam .. If I did get 20/20 .. I would have passed :( PLEASE help!
 
Physics news on Phys.org
I just started to really learn VHDL, but it seems like there's a lot wrong with this...
 

Similar threads

Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
11K
Replies
4
Views
5K
Replies
1
Views
9K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 3 ·
Replies
3
Views
4K
  • · Replies 1 ·
Replies
1
Views
7K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 2 ·
Replies
2
Views
11K
  • · Replies 3 ·
Replies
3
Views
3K