Cosmos/source/Lost/Assembler/Assembler.csproj
LostTheBlack_cp 3060b02e0c AMD64 assembler:
[-] some unnecessary overloads
[+] overloaded operators in order to allow defining memory operands easily
[+] overloaded automatic conversions to allow operands
[+] Labels support
[+] code generator based on F# started
2008-05-09 11:29:38 +00:00

95 lines
No EOL
4.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{EF65AFB7-9DC9-4ACD-946D-7E973A67DBBE}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Lost</RootNamespace>
<AssemblyName>LostAssembler</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SccProjectName>SAK</SccProjectName>
<SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>..\Release\Assembler.XML</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data.DataSetExtensions">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="BinaryStreamExtensions.cs" />
<Compile Include="BitUtils.cs" />
<Compile Include="JIT\AMD64\Add.cs" />
<Compile Include="JIT\AMD64\AddWithCarry.cs" />
<Compile Include="JIT\AMD64\And.cs" />
<Compile Include="JIT\AMD64\BreakPoint.cs" />
<Compile Include="JIT\AMD64\Call.cs" />
<Compile Include="JIT\AMD64\Compare.cs" />
<Compile Include="JIT\AMD64\ConditionalJumpInstruction.cs" />
<Compile Include="JIT\AMD64\AluInstruction.cs" />
<Compile Include="JIT\AMD64\ImmediateOperand.cs" />
<Compile Include="JIT\AMD64\Jump.cs" />
<Compile Include="JIT\AMD64\JumpIfEqual.cs" />
<Compile Include="JIT\AMD64\Label.cs" />
<Compile Include="JIT\AMD64\LabelOperand.cs" />
<Compile Include="JIT\AMD64\MemoryOperand.cs" />
<Compile Include="JIT\AMD64\Move.cs" />
<Compile Include="JIT\AMD64\Pop.cs" />
<Compile Include="JIT\AMD64\Push.cs" />
<Compile Include="JIT\AMD64\Registers.cs" />
<Compile Include="JIT\AMD64\GeneralPurposeRegister.cs" />
<Compile Include="JIT\AMD64\InstructionOperand.cs" />
<Compile Include="JIT\AMD64\ProcessorInstruction.cs" />
<Compile Include="JIT\AMD64\Return.cs" />
<Compile Include="JIT\AMD64\Rex.cs" />
<Compile Include="LostTest.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="asm.asm" />
<Content Include="test.asm">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>