mirror of https://github.com/KLayout/klayout.git
[consider merging] Bugfix for LayoutToNetlistReader
This commit is contained in:
parent
7126375646
commit
7c1fd487d6
|
|
@ -132,6 +132,7 @@ LayoutToNetlistStandardReader::skip ()
|
|||
{
|
||||
while (m_ex.at_end () || *m_ex.skip () == '#') {
|
||||
if (m_stream.at_end ()) {
|
||||
m_ex = tl::Extractor ();
|
||||
return;
|
||||
}
|
||||
m_progress.set (m_stream.line_number ());
|
||||
|
|
|
|||
|
|
@ -0,0 +1,6 @@
|
|||
#%l2n-klayout
|
||||
W(TOP)
|
||||
U(0.001)
|
||||
H(I B(info))
|
||||
H(W B(warning))
|
||||
H(E B(error))
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
#%l2n-klayout
|
||||
top(TOP)
|
||||
unit(0.001)
|
||||
|
||||
# Layer section
|
||||
# This section lists the mask layers (drawing or derived) and their connections.
|
||||
|
||||
# Mask layers
|
||||
|
||||
# Mask layer connectivity
|
||||
|
||||
# Log entries
|
||||
message(info description(info))
|
||||
message(warning description(warning))
|
||||
message(error description(error))
|
||||
|
||||
# Circuit section
|
||||
# Circuits are the hierarchical building blocks of the netlist.
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
#%l2n-klayout
|
||||
top(TOP)
|
||||
unit(0.001)
|
||||
|
||||
# Layer section
|
||||
# This section lists the mask layers (drawing or derived) and their connections.
|
||||
|
||||
# Mask layers
|
||||
|
||||
# Mask layer connectivity
|
||||
|
||||
# Log entries
|
||||
message(info description(info))
|
||||
message(warning description(warning))
|
||||
message(error description(error))
|
||||
|
||||
# Circuit section
|
||||
# Circuits are the hierarchical building blocks of the netlist.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
#%l2n-klayout
|
||||
W(TOP)
|
||||
U(0.001)
|
||||
H(I B(info))
|
||||
H(W B(warning))
|
||||
H(E B(error))
|
||||
Loading…
Reference in New Issue