RASCSI/cpp/rascsi.cpp

20 lines
427 B
C++
Raw Normal View History

2018-05-03 13:47:57 +00:00
//---------------------------------------------------------------------------
//
// SCSI Target Emulator RaSCSI Reloaded
// for Raspberry Pi
2018-05-03 13:47:57 +00:00
//
// Copyright (C) 2022 Uwe Seimet
2018-05-03 13:47:57 +00:00
//
//---------------------------------------------------------------------------
#include "rascsi/rascsi_core.h"
using namespace std;
int main(int argc, char *argv[])
2018-05-03 13:47:57 +00:00
{
const vector<char *> args(argv, argv + argc);
2018-05-03 13:47:57 +00:00
return Rascsi().run(args);
2018-05-03 13:47:57 +00:00
}