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
0fef5d60
Commit
0fef5d60
authored
Apr 10, 2014
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Command to test console colors.
parent
4bafc98a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
148 additions
and
0 deletions
+148
-0
abclib.dsp
+4
-0
src/base/abci/abc.c
+20
-0
src/misc/util/module.make
+1
-0
src/misc/util/utilColor.c
+123
-0
No files found.
abclib.dsp
View file @
0fef5d60
...
...
@@ -2915,6 +2915,10 @@ SOURCE=.\src\misc\util\utilCex.h
# End Source File
# Begin Source File
SOURCE=.\src\misc\util\utilColor.c
# End Source File
# Begin Source File
SOURCE=.\src\misc\util\utilFile.c
# End Source File
# Begin Source File
...
...
src/base/abci/abc.c
View file @
0fef5d60
...
...
@@ -171,6 +171,7 @@ static int Abc_CommandInter ( Abc_Frame_t * pAbc, int argc, cha
static
int
Abc_CommandBb2Wb
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandOutdec
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandNodeDup
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandTestColor
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandTest
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandQuaVar
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
...
...
@@ -744,6 +745,7 @@ void Abc_Init( Abc_Frame_t * pAbc )
Cmd_CommandAdd
(
pAbc
,
"Various"
,
"bb2wb"
,
Abc_CommandBb2Wb
,
0
);
Cmd_CommandAdd
(
pAbc
,
"Various"
,
"outdec"
,
Abc_CommandOutdec
,
1
);
Cmd_CommandAdd
(
pAbc
,
"Various"
,
"nodedup"
,
Abc_CommandNodeDup
,
1
);
Cmd_CommandAdd
(
pAbc
,
"Various"
,
"testcolor"
,
Abc_CommandTestColor
,
0
);
Cmd_CommandAdd
(
pAbc
,
"Various"
,
"test"
,
Abc_CommandTest
,
0
);
// Cmd_CommandAdd( pAbc, "Various", "qbf_solve", Abc_CommandTest, 0 );
...
...
@@ -10293,6 +10295,24 @@ usage:
SeeAlso []
***********************************************************************/
int
Abc_CommandTestColor
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
{
extern
void
Abc_ColorTest
();
Abc_ColorTest
();
return
1
;
}
/**Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
***********************************************************************/
int
Abc_CommandTest
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
{
Abc_Ntk_t
*
pNtk
=
Abc_FrameReadNtk
(
pAbc
);
src/misc/util/module.make
View file @
0fef5d60
SRC
+=
src/misc/util/utilBridge.c
\
src/misc/util/utilCex.c
\
src/misc/util/utilColor.c
\
src/misc/util/utilFile.c
\
src/misc/util/utilNam.c
\
src/misc/util/utilSignal.c
\
...
...
src/misc/util/utilColor.c
0 → 100644
View file @
0fef5d60
/**CFile****************************************************************
FileName [utilColor.c]
SystemName [ABC: Logic synthesis and verification system.]
PackageName [Handling counter-examples.]
Synopsis [Handling counter-examples.]
Author [Alan Mishchenko]
Affiliation [UC Berkeley]
Date [Ver. 1.0. Started - Feburary 13, 2011.]
Revision [$Id: utilColor.c,v 1.00 2011/02/11 00:00:00 alanmi Exp $]
***********************************************************************/
#include <stdio.h>
#include "misc/util/abc_global.h"
#ifdef WIN32
#include <windows.h>
#endif
ABC_NAMESPACE_IMPL_START
////////////////////////////////////////////////////////////////////////
/// DECLARATIONS ///
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
/// FUNCTION DEFINITIONS ///
////////////////////////////////////////////////////////////////////////
/**Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
***********************************************************************/
void
Abc_ColorTest
()
{
#ifdef WIN32
int
x
,
y
;
HANDLE
hConsole
=
GetStdHandle
(
STD_OUTPUT_HANDLE
);
printf
(
"Background color 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15
\n
"
);
printf
(
" -----------------------------------------------
\n
"
);
for
(
y
=
0
;
y
<
16
;
y
++
)
{
printf
(
"Foreground color %02d"
,
y
);
for
(
x
=
0
;
x
<
16
;
x
++
)
{
printf
(
" "
);
SetConsoleTextAttribute
(
hConsole
,
(
WORD
)(
16
*
y
+
x
)
);
printf
(
"Hi"
);
SetConsoleTextAttribute
(
hConsole
,
7
);
}
printf
(
"
\n
"
);
}
#else
/*
fg[Default] = '[0m'; fg[DefaultBold] = '[1m'
fg[Black] = '[0;30m'; fg[DarkGray] = '[1;30m'
fg[Blue] = '[0;34m'; fg[LightBlue] = '[1;34m'
fg[Green] = '[0;32m'; fg[LightGreen] = '[1;32m'
fg[Cyan] = '[0;36m'; fg[LightCyan] = '[1;36m'
fg[Red] = '[0;31m'; fg[LightRed] = '[1;31m'
fg[Purple] = '[0;35m'; fg[LightPurple] = '[1;35m'
fg[Brown] = '[0;33m'; fg[Yellow] = '[1;33m'
fg[LightGray] = '[0;37m'; fg[White] = '[1;37m'
bg[Black] = '[0;40m'; hi[Underlined] = '[4m'
bg[Blue] = '[0;44m'; hi[Blinking] = '[5m'
bg[Green] = '[0;42m'; hi[Inverted] = '[7m'
bg[Cyan] = '[0;46m'; hi[Concealed] = '[8m'
bg[Red] = '[0;41m'
bg[Purple] = '[0;45m'
bg[Brown] = '[0;43m'
bg[LightGray] = '[0;47m'
*/
int
x
,
y
;
printf
(
"Background color "
);
for
(
x
=
0
;
x
<
8
;
x
++
)
printf
(
" [1;4%dm"
,
x
);
printf
(
"
\n
"
);
for
(
y
=
0
;
y
<
2
;
y
++
)
{
printf
(
"Foreground color [%dm "
,
y
);
for
(
x
=
0
;
x
<
8
;
x
++
)
printf
(
"
\033
[%d;3%dm
\033
[%dm Hi
\033
[0m"
,
y
&
1
,
y
>>
1
,
x
);
printf
(
"
\n
"
);
}
for
(
y
=
0
;
y
<
16
;
y
++
)
{
printf
(
"Foreground color [%d;3%dm"
,
y
&
1
,
y
>>
1
);
for
(
x
=
0
;
x
<
8
;
x
++
)
printf
(
"
\033
[%d;3%dm
\033
[1;4%dm Hi
\033
[0m"
,
y
&
1
,
y
>>
1
,
x
);
printf
(
"
\n
"
);
}
printf
(
"
\033
[4mUnderlined
\033
[0m
\n
"
);
printf
(
"
\033
[5mBlinking
\033
[0m
\n
"
);
printf
(
"
\033
[7mInverted
\033
[0m
\n
"
);
printf
(
"
\033
[8mConcealed
\033
[0m
\n
"
);
#endif
}
////////////////////////////////////////////////////////////////////////
/// END OF FILE ///
////////////////////////////////////////////////////////////////////////
ABC_NAMESPACE_IMPL_END
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