Module I. | VHDL - Code

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/18

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 10:40 AM on 2/12/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

19 Terms

1
New cards

use ieee.std_logic.1164.all;

use ieee.std_logic.arith.all;

In order to use the pre-defined arithmetic and logic functions

2
New cards

use ieee.std_logic.unsigned.all;

For vectors that are represented as unsigned binary:

3
New cards

use ieee.std_logic.signed.all;

For vectors that are represented as signed binary:

4
New cards

ieee;

library _____;

use

entity

port

end entity;

architecture

begin

logic

end architecture;


5
New cards

ieee.std_logic_1164.all;

library

use _____________;

entity

port

end entity;

architecture

begin

logic

end architecture;


6
New cards

entity name is

library

use

______ ____ __

port

end entity;

architecture

begin

logic

end architecture;


7
New cards

port ( A: in std_logic; Q: out std_logic);

library

use

entity

____(_: __ _______;
_: —————-
);

end entity;

architecture

begin

logic

end architecture;


8
New cards

end name;

library

use

entity

port

___ ______;

architecture

begin

logic

end architecture;


9
New cards

architecture rtl of name is

library

use

entity

port

end entity;

________ ____ __ ____ __

begin

logic

end architecture;


10
New cards

begin

library

use

entity

port

end entity;

architecture

_____

logic

end architecture;


11
New cards

Q <= logic A;

library

use

entity

port

end entity;

architecture

begin

logic

end architecture;


12
New cards
13
New cards
14
New cards
15
New cards
16
New cards
17
New cards
18
New cards
19
New cards