Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abc
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
abc
Commits
08b69297
Commit
08b69297
authored
Feb 01, 2015
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improvements and tuning of CBA.
parent
ffaf8b39
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
src/base/cba/cbaPtr.c
+4
-3
src/base/cba/cbaPtrAbc.c
+1
-0
No files found.
src/base/cba/cbaPtr.c
View file @
08b69297
...
...
@@ -43,9 +43,11 @@ box = array containing model name, instance name, followed by pairs of formal
- all formal names present in the module description should be listed
- if an input pin is not driven or an output pin has no fanout, the actual pin name is NULL
- word-level formal name "a" is written as bit-level names (a[0]. a[1], etc) ordered LSB to MSB
- primitive names should be given as char*-strings in description of nodes and boxes
- the boxes can appear in any order (topological order is not expected)
- in description of nodes and boxes, primitive names should be given as char*-strings ("AndT", "OrT", etc)
- constant 0/1 nets should be driven by constant nodes having primitive names "Const0T" and "Const1T"
- primitive modules should not be written, but the list of primitives and formal names should be provided
- c
onstant 0/1 nets can be specified as char*-strings "NetConst0" and "NetConst1".
- c
urrently only "boxes" are supported (the array of "nodes" should contain no entries)
- arrays of input-arrival/output-required times in the module description are optional
*/
...
...
@@ -382,7 +384,6 @@ Vec_Ptr_t * Cba_PtrTransformTest( Vec_Ptr_t * vDes )
SeeAlso []
***********************************************************************/
void
Cba_PtrTransformTestTest
()
{
char
*
pFileName
=
"c/hie/dump/1/netlist_1.v"
;
...
...
src/base/cba/cbaPtrAbc.c
View file @
08b69297
...
...
@@ -462,6 +462,7 @@ Vec_Ptr_t * Cba_PtrDeriveFromCba( Cba_Man_t * p )
Cba_Ntk_t
*
pTemp
;
int
i
;
if
(
p
==
NULL
)
return
NULL
;
Cba_ManAssignInternNames
(
p
);
vDes
=
Vec_PtrAllocExact
(
1
+
Cba_ManNtkNum
(
p
)
);
Vec_PtrPush
(
vDes
,
p
->
pName
);
Cba_ManForEachNtk
(
p
,
pTemp
,
i
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment