Search:
Login
Preferences
Help/Guide
About Trac
Wiki
Timeline
Roadmap
View Tickets
Search
Context Navigation
Back to ex_adder
ex_adder
: driver.h
File driver.h,
203 bytes
(added by
fpecheux
,
17 years ago
)
Line
1
// File : driver.h
2
#include "systemc.h"
3
4
SC_MODULE(driver)
5
{
6
sc_out<bool> d_a,d_b,d_cin;
7
8
void prc_driver();
9
10
SC_CTOR(driver) : d_a("d_a"),d_b("d_b"),d_cin("d_cin")
11
{
12
SC_THREAD(prc_driver);
13
}
14
};
15
Download in other formats:
Original Format