repo.or.cz
/
geda-gaf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
missing NULL terminator in set_config_x
[geda-gaf.git]
/
gnetlist-legacy
/
examples
/
vams
/
vhdl
/
basic-vhdl
/
resistor.vhdl
blob
9b16787d9688ac94e8f2cd1d5d31153a7a643c76
1
LIBRARY ieee,disciplines;
2
USE ieee.math_real.all;
3
USE ieee.math_real.all;
4
USE work.electrical_system.all;
5
USE work.all;
6
-- Entity declaration --
7
8
ENTITY RESISTOR IS
9
GENERIC ( r : REAL := 60.0 );
10
PORT ( terminal LT : electrical;
11
terminal RT : electrical );
12
END ENTITY RESISTOR;
13