From e8ed7b1d1b5bef31e9874f679a5797c2e00d06f1 Mon Sep 17 00:00:00 2001 From: Nilay Vaish Date: Sat, 11 Oct 2014 15:02:23 -0500 Subject: ext: add the source code for DSENT This patch adds a tool called DSENT to the ext/ directory. DSENT is a tool that models power and area for on-chip networks. The next patch adds a script for using the tool. --- ext/dsent/main.cc | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 ext/dsent/main.cc (limited to 'ext/dsent/main.cc') diff --git a/ext/dsent/main.cc b/ext/dsent/main.cc new file mode 100644 index 000000000..f826829b2 --- /dev/null +++ b/ext/dsent/main.cc @@ -0,0 +1,10 @@ + +#include "DSENT.h" + +int main(int argc, char** argv) +{ + DSENT::DSENT::run(argc-1, argv+1); + + return 0; +} + -- cgit v1.2.3