Move top-level .cpp files into their respective folders (#1249)

* Update Makefile, move top-level .cpp files

* Move top-level .cpp files into their respective folders
This commit is contained in:
Uwe Seimet
2023-10-16 18:27:18 +02:00
committed by GitHub
parent 41bdcd4aed
commit aa927cb504
12 changed files with 18 additions and 21 deletions
+20
View File
@@ -0,0 +1,20 @@
//---------------------------------------------------------------------------
//
// SCSI Target Emulator PiSCSI
// for Raspberry Pi
//
// Copyright (C) 2022 Uwe Seimet
// Copyright (C) 2022 akuker
//
//---------------------------------------------------------------------------
#include "scsiloop/scsiloop_core.h"
using namespace std;
int main(int argc, char *argv[])
{
const vector<char *> args(argv, argv + argc);
return ScsiLoop().run(args);
}