mirror of
https://github.com/bryanperris/cor64.git
synced 2025-04-02 10:31:54 -04:00
* Mupen64Plus demo runs with LLE RDP (many rendering glitches), works well with gliden64 plugin * Little-endian model now supported and works (required for gliden64 plugin) * Added glideN64 plugin support (custom version only for cor64) * Can render with HLE graphics or LLE graphics * Some fixes for BassSharp * Boot related fixes * Better way to manage CSharp defines * Memory improvements, fixes * TLB now works * FPU Fixes * PIF controller basics are working now such as controller input * Added some debug functions to the madcat rdp * Remove hosting the test roms in the repo * Started work on workbench scripting with IronPython * Unit test fixes * a snippet of IPL2 is assembled on the fly required for 6105 booting * Other fixes, etc.
16 lines
484 B
C#
16 lines
484 B
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using Nuke.Common.Tooling;
|
|
|
|
[TypeConverter(typeof(TypeConverter<Configuration>))]
|
|
public class Configuration : Enumeration
|
|
{
|
|
public static Configuration Debug = new Configuration { Value = nameof(Debug) };
|
|
public static Configuration Release = new Configuration { Value = nameof(Release) };
|
|
|
|
public static implicit operator string(Configuration configuration)
|
|
{
|
|
return configuration.Value;
|
|
}
|
|
}
|