** 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.