This commit is contained in:
kudzu_cp 2007-11-24 01:24:47 +00:00
parent e4ed1fd45d
commit f0b5d0f2e7
7 changed files with 47 additions and 2 deletions

View file

@ -3,7 +3,7 @@
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.20706</ProductVersion>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{CE50FE98-9AC4-4B4D-ADC7-31F6DCD28755}</ProjectGuid>
<OutputType>Library</OutputType>
@ -51,6 +51,8 @@
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Screen\Text.cs" />
<Compile Include="Serial.cs" />
<Compile Include="Storage\ATA.cs" />
<Compile Include="Storage\Storage.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

View file

@ -0,0 +1,8 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Cosmos.Hardware.Storage {
class ATA : Storage {
}
}

View file

@ -0,0 +1,8 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Cosmos.Hardware.Storage {
class Storage {
}
}

View file

@ -3,7 +3,7 @@
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.20706</ProductVersion>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{A1F83D9F-2D44-4264-A08B-416797123018}</ProjectGuid>
<OutputType>Library</OutputType>
@ -42,6 +42,9 @@
<ItemGroup>
<Compile Include="CPU.cs" />
<Compile Include="DebugUtil.cs" />
<Compile Include="FileSystem\Ext2.cs" />
<Compile Include="FileSystem\FileSystem.cs" />
<Compile Include="FileSystem\ISO9660.cs" />
<Compile Include="Heap.cs" />
<Compile Include="Interrupts.cs" />
<Compile Include="Keyboard.cs" />

View file

@ -0,0 +1,8 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Cosmos.Kernel.FileSystem {
class Ext2 : FileSystem {
}
}

View file

@ -0,0 +1,8 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Cosmos.Kernel.FileSystem {
class FileSystem {
}
}

View file

@ -0,0 +1,8 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Cosmos.Kernel.FileSystem {
class ISO9660 : FileSystem {
}
}