MCQOPTIONS
Saved Bookmarks
| 1. |
How to correctly assign the value of 2x+10 to y in the following VHDL code? |
| A. | y <= 2*x + 10; |
| B. | long y <= long 2*x + 10; |
| C. | short y <= long (2*x + 10); |
| D. | y <= long (2*x + 10);View Answer |
| Answer» E. | |