mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-10 18:21:20 +00:00
This commit is contained in:
parent
e4ed1fd45d
commit
f0b5d0f2e7
7 changed files with 47 additions and 2 deletions
|
|
@ -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.
|
||||
|
|
|
|||
8
source/Cosmos/Cosmos.Hardware/Storage/ATA.cs
Normal file
8
source/Cosmos/Cosmos.Hardware/Storage/ATA.cs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Cosmos.Hardware.Storage {
|
||||
class ATA : Storage {
|
||||
}
|
||||
}
|
||||
8
source/Cosmos/Cosmos.Hardware/Storage/Storage.cs
Normal file
8
source/Cosmos/Cosmos.Hardware/Storage/Storage.cs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Cosmos.Hardware.Storage {
|
||||
class Storage {
|
||||
}
|
||||
}
|
||||
|
|
@ -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" />
|
||||
|
|
|
|||
8
source/Cosmos/Cosmos.Kernel/FileSystem/Ext2.cs
Normal file
8
source/Cosmos/Cosmos.Kernel/FileSystem/Ext2.cs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Cosmos.Kernel.FileSystem {
|
||||
class Ext2 : FileSystem {
|
||||
}
|
||||
}
|
||||
8
source/Cosmos/Cosmos.Kernel/FileSystem/FileSystem.cs
Normal file
8
source/Cosmos/Cosmos.Kernel/FileSystem/FileSystem.cs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Cosmos.Kernel.FileSystem {
|
||||
class FileSystem {
|
||||
}
|
||||
}
|
||||
8
source/Cosmos/Cosmos.Kernel/FileSystem/ISO9660.cs
Normal file
8
source/Cosmos/Cosmos.Kernel/FileSystem/ISO9660.cs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Cosmos.Kernel.FileSystem {
|
||||
class ISO9660 : FileSystem {
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue