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
0c337bc3
Commit
0c337bc3
authored
Nov 29, 2010
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added API Abc_FrameReadGia
parent
58464374
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
src/base/main/main.h
+2
-0
src/base/main/mainFrame.c
+16
-0
No files found.
src/base/main/main.h
View file @
0c337bc3
...
...
@@ -33,6 +33,7 @@
// core packages
#include "abc.h"
#include "gia.h"
ABC_NAMESPACE_HEADER_START
// the framework containing all data
...
...
@@ -74,6 +75,7 @@ extern ABC_DLL void Abc_Stop();
/*=== mainFrame.c ===========================================================*/
extern
ABC_DLL
Abc_Ntk_t
*
Abc_FrameReadNtk
(
Abc_Frame_t
*
p
);
extern
ABC_DLL
Gia_Man_t
*
Abc_FrameReadGia
(
Abc_Frame_t
*
p
);
extern
ABC_DLL
FILE
*
Abc_FrameReadOut
(
Abc_Frame_t
*
p
);
extern
ABC_DLL
FILE
*
Abc_FrameReadErr
(
Abc_Frame_t
*
p
);
extern
ABC_DLL
int
Abc_FrameReadMode
(
Abc_Frame_t
*
p
);
...
...
src/base/main/mainFrame.c
View file @
0c337bc3
...
...
@@ -259,6 +259,22 @@ Abc_Ntk_t * Abc_FrameReadNtk( Abc_Frame_t * p )
SeeAlso []
***********************************************************************/
Gia_Man_t
*
Abc_FrameReadGia
(
Abc_Frame_t
*
p
)
{
return
p
->
pGia
;
}
/**Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
***********************************************************************/
FILE
*
Abc_FrameReadOut
(
Abc_Frame_t
*
p
)
{
return
p
->
Out
;
...
...
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