EmbDev.net

Forum: FPGA, VHDL & Verilog Can anyone help me to solve this verilog(beginner) question or suggest me any source for solving


Du wurdest von Mikrocontroller.net auf diese Seite weitergeleitet. Zurück zu Mikrocontroller.net
von Omar K. (Company: Middle East University) (omar17)


Rate this post
useful
not useful
** Write the MCU super-loop version (state-machine with fixed heartbeat) 
of the following code:
1
while(1) {
2
   wt(2);
3
   AA();
4
   wt(6);
5
   BB();
6
   wt(4);
7
   CC();
8
}

**Then, Consider above question. Replace:

AA() with aa = bb + cc;
BB() with bb = aa * cc;
CC() with cc = bb - aa;

and write the corresponding Verilog RTL.

: Edited by Moderator
von Lothar M. (Company: Titel) (lkmiller) (Moderator)


Rate this post
useful
not useful
Omar K. wrote:
> wt(2);
What means that? Is it a delay like "wait for 2 clocks"?

> and write the corresponding Verilog RTL.
As a VHDL guy I would search the internet how a FSM is coded in Verilog. 
The search would not last long as this is a very basic thing. Then one 
counter for the delay. Thats all folks.


So start with something, then ask a particular question when you 
encounter specific problems. But it won't work here to wait for someone 
doing your homework.

Please log in before posting. Registration is free and takes only a minute.
Existing account
Do you have a Google/GoogleMail account? No registration required!
Log in with Google account
No account? Register here.