OpenFPGA/openfpga/src/main.cpp

13 lines
509 B
C++
Raw Normal View History

/********************************************************************
* Build the OpenFPGA shell interface
*******************************************************************/
#include "openfpga_shell.h"
/********************************************************************
* Main function to start OpenFPGA shell interface
*******************************************************************/
int main(int argc, char** argv) {
OpenfpgaShell openfpga_shell;
2022-11-23 19:06:27 -06:00
return openfpga_shell.start(argc, argv);
}