Update to new DIC version (#167)

* Remove `.` handling code since it should be in DIC now

* Add support for 3 new flags

* Fix dot tests

* Fix PS4 autodetect (Fixes #164)

* Fix PS4 version finding

* Update DIC archive path

* Add support for disk command (unused by default)
This commit is contained in:
Matt Nadareski
2019-10-01 11:53:44 -07:00
committed by GitHub
parent 700ff50eef
commit 8b41f03472
7 changed files with 83 additions and 12 deletions

View File

@@ -11,6 +11,7 @@
public const string CompactDisc = "cd";
public const string Data = "data";
public const string DigitalVideoDisc = "dvd";
public const string Disk = "disk";
public const string DriveSpeed = "ls";
public const string Eject = "eject";
public const string Floppy = "fd";
@@ -36,6 +37,7 @@
{
public const string AddOffset = "/a";
public const string AMSF = "/p";
public const string AtariJaguar = "/aj";
public const string BEOpcode = "/be";
public const string C2Opcode = "/c2";
public const string CopyrightManagementInformation = "/c";
@@ -59,6 +61,7 @@
public const string SkipSector = "/sk";
public const string SubchannelReadLevel = "/s";
public const string VideoNow = "/vn";
public const string VideoNowColor = "/vnc";
}
/// <summary>

View File

@@ -30,6 +30,7 @@
CompactDisc,
Data,
DigitalVideoDisc,
Disk,
DriveSpeed,
Eject,
Floppy,
@@ -56,6 +57,7 @@
NONE = 0,
AddOffset,
AMSF,
AtariJaguar,
BEOpcode,
C2Opcode,
CopyrightManagementInformation,
@@ -79,6 +81,7 @@
SkipSector,
SubchannelReadLevel,
VideoNow,
VideoNowColor,
}
/// <summary>