//--------------------------------------------------------------------------- // // 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 args(argv, argv + argc); return ScsiMon().run(args); }