mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 16:33:17 +00:00
08194af424
- Moved C++ code to cpp/ from src/raspberrypi - Related updates to Makefile, easyinstall.sh, and the github build rules - Removed the native X68k C code in src/x68k from the repo
26 lines
841 B
C
26 lines
841 B
C
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator RaSCSI Reloaded
|
|
// for Raspberry Pi
|
|
//
|
|
// Powered by XM6 TypeG Technology.
|
|
// Copyright (C) 2016-2020 GIMONS
|
|
//
|
|
// [ Common Definitions ]
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
//---------------------------------------------------------------------------
|
|
//
|
|
// Various Operation Settings
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
#define USE_SEL_EVENT_ENABLE // Check SEL signal by event
|
|
// This avoids an indefinite loop with warnings if there is no RaSCSI hardware
|
|
// and thus helps with running rasctl and unit test on x86 hardware.
|
|
#if defined(__x86_64__) || defined(__X86__) || !defined(__linux__)
|
|
#undef USE_SEL_EVENT_ENABLE
|
|
#endif
|