mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 16:33:17 +00:00
aa927cb504
* Update Makefile, move top-level .cpp files * Move top-level .cpp files into their respective folders
20 lines
423 B
C++
20 lines
423 B
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator PiSCSI
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2022-2023 Uwe Seimet
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#include "scsidump/scsidump_core.h"
|
|
|
|
using namespace std;
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
vector<char *> args(argv, argv + argc);
|
|
|
|
return ScsiDump().run(args);
|
|
}
|