Cosmos/source/Cosmos.IL2CPU/CompilerExtensionBase.cs
2015-01-03 09:30:10 +01:00

17 lines
362 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Cosmos.IL2CPU
{
public abstract class CompilerExtensionBase
{
public virtual bool TryCreateAppAssembler(byte debugCom, string assemblerLog, out AppAssembler result)
{
result = null;
return false;
}
}
}