Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
S
systemc-clang
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
caesr-pub
systemc-clang
Commits
b0fcd790
Commit
b0fcd790
authored
Jun 07, 2019
by
rmrf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a test for templated waits
parent
caa60efb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
0 deletions
+45
-0
tests/sanity_tests/template-wait-args-simple.cpp
tests/sanity_tests/template-wait-args-simple.cpp
+45
-0
No files found.
tests/sanity_tests/template-wait-args-simple.cpp
0 → 100644
View file @
b0fcd790
#include "systemc.h"
//sc_event e1;
template
<
unsigned
D1
,
unsigned
D2
>
SC_MODULE
(
producer
){
int
global
;
sc_out
<
int
>
out
;
void
f1
()
{
int
i
,
j
;
while
(
true
)
{
wait
(
2
,
SC_NS
);
wait
(
D1
,
SC_NS
);
}
}
SC_CTOR
(
producer
)
{
SC_THREAD
(
f1
);
}
};
SC_MODULE
(
consumer
)
{
sc_in
<
int
>
in
;
void
f2
()
{
int
x
;
while
(
true
)
{
}
}
SC_CTOR
(
consumer
)
{
SC_THREAD
(
f2
);
}
};
int
sc_main
(
int
argc
,
char
*
argv
[])
{
sc_signal
<
int
>
s1
;
producer
<
222
,
333
>
p1
(
"producer"
);
// producer p1("producer");
// consumer c1("consumer");
p1
.
out
(
s1
);
// c1.in(s1);
return
0
;
}
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