mirror of
https://github.com/thewesker/RASCSI.git
synced 2025-12-21 21:01:14 -05:00
first commit
This commit is contained in:
49
src/raspberrypi/xm6.h
Normal file
49
src/raspberrypi/xm6.h
Normal file
@@ -0,0 +1,49 @@
|
||||
//---------------------------------------------------------------------------
|
||||
//
|
||||
// SCSI Target Emulator RaSCSI (*^..^*)
|
||||
// for Raspberry Pi
|
||||
//
|
||||
// Powered by XM6 TypeG Technology.
|
||||
// Copyright (C) 2016-2018 GIMONS
|
||||
//
|
||||
// [ 共通定義 ]
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
#if !defined(xm6_h)
|
||||
#define xm6_h
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
//
|
||||
// VERSION
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
#define VERSION 0x0134
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
//
|
||||
// RaSCSI
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
#define RASCSI VERSION
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
//
|
||||
// IDマクロ
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
#define MAKEID(a, b, c, d) ((DWORD)((a<<24) | (b<<16) | (c<<8) | d))
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
//
|
||||
// クラス宣言
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
class Fileio;
|
||||
// ファイル入出力
|
||||
class Disk;
|
||||
// SASI/SCSIディスク
|
||||
class Filepath;
|
||||
// ファイルパス
|
||||
|
||||
#endif // xm6_h
|
||||
Reference in New Issue
Block a user