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