RASCSI/cpp/scsidump.cpp

20 lines
424 B
C++
Raw Permalink Normal View History

2023-02-04 03:41:18 +00:00
//---------------------------------------------------------------------------
//
// SCSI Target Emulator PiSCSI
// for Raspberry Pi
//
// Copyright (C) 2022 Uwe Seimet
//
//---------------------------------------------------------------------------
#include "scsidump/scsidump_core.h"
using namespace std;
int main(int argc, char *argv[])
{
const vector<char *> args(argv, argv + argc);
return ScsiDump().run(args);
}