Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
caesr-pub
systemc-clang
Commits
3a5c7a5b
Commit
3a5c7a5b
authored
Aug 08, 2019
by
rmrf
Browse files
Update test
parent
a2cc4f3e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
tests/method-as-member-variable.cpp
tests/method-as-member-variable.cpp
+2
-2
No files found.
tests/method-as-member-variable.cpp
View file @
3a5c7a5b
...
@@ -19,14 +19,14 @@ SC_MODULE( test ){
...
@@ -19,14 +19,14 @@ SC_MODULE( test ){
sc_in
<
int
>
in
;
sc_in
<
int
>
in
;
sc_out
<
int
>
out
;
sc_out
<
int
>
out
;
sc_signal
<
int
>
test_signal
;
sc_signal
<
int
>
test_signal
;
member_variable
mv
;
member_variable
mv
_in_test
;
void
entry_function_1
()
{
void
entry_function_1
()
{
std
::
cout
<<
"ef1: "
<<
std
::
endl
;
std
::
cout
<<
"ef1: "
<<
std
::
endl
;
// mv.print();
// mv.print();
}
}
SC_CTOR
(
test
)
:
mv
(
"mv
"
)
{
SC_CTOR
(
test
)
:
mv
_in_test
(
"initialize_mv_in_test
"
)
{
SC_METHOD
(
entry_function_1
);
SC_METHOD
(
entry_function_1
);
}
}
};
};
...
...
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