Skip to content

Commit 6851c91

Browse files
committed
lib.py -> lib/fsm.py
1 parent ab4a919 commit 6851c91

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

veriloggen/lib/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import os
2+
import sys
3+
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
4+
5+
from fsm import FSM

veriloggen/lib.py renamed to veriloggen/lib/fsm.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1+
import os
2+
import sys
3+
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
4+
15
import collections
26
import vtypes
37

4-
#-------------------------------------------------------------------------------
58
class FSM(object):
69
""" Finite State Machine Generator """
710
def __init__(self, m, name, width=32, initname='init'):

0 commit comments

Comments
 (0)