gem5/ext/dsent/main.cc
Nilay Vaish e8ed7b1d1b 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.
2014-10-11 15:02:23 -05:00

11 lines
112 B
C++

#include "DSENT.h"
int main(int argc, char** argv)
{
DSENT::DSENT::run(argc-1, argv+1);
return 0;
}