Skip to content

Commit 928b215

Browse files
committed
Removed unneeded code.
Updated README.md and SUPPORT.md.
1 parent 047c7ae commit 928b215

File tree

3 files changed

+3
-34
lines changed

3 files changed

+3
-34
lines changed

README.md

+3-12
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,7 @@
1-
# Cosmos Website
1+
# Cosmos
22

3-
For instructions on how to install and use Cosmos, please visit [www.goCosmos.org](http://www.goCosmos.org).
4-
5-
Build status for master branch:
63
[![Build status](https://ci.appveyor.com/api/projects/status/kust7g5dlnykhkaf/branch/master?svg=true)](https://ci.appveyor.com/project/CosmosOS/cosmos/branch/master)
74

8-
# Urgent Notice
9-
10-
## Updated Sep 29, 2017
11-
12-
The hosting service which hosts our website has a technical issue which has taken our website offline. We are urgently working to resolve this issue.
13-
14-
## Hurricane Harvey
5+
Cosmos is an operating system "construction kit". Build your own OS using managed languages such as C#, VB.NET, and more!
156

16-
The issue is being impacted by lasting impacts to a center in Houston affected by Harvey and the impacts of moving resources out of the affected location.
7+
For instructions on how to install and use Cosmos, please visit the [Cosmos website](http://www.gocosmos.org).

SUPPORT.md

-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,2 @@
11
### Common Issues
22
- When installing the Dev Kit, if .NET Framework 4.6.2 isn't being found, try installing it from: https://www.microsoft.com/en-us/download/details.aspx?id=53321
3-
- (User Kit 20170620) When using Visual Studio 2017 15.3, Cosmos projects fail to build. To fix this, go to "%appdata%\Cosmos User Kit\Build\VSIP\", open Cosmos.targets in a text editor and add these lines to the first PropertyGroup:
4-
```xml
5-
<ImplicitlyExpandNETStandardFacades>False</ImplicitlyExpandNETStandardFacades>
6-
<DesignTimeBuild>True</DesignTimeBuild>
7-
<ProjectAssetsFile>NULL</ProjectAssetsFile>
8-
```
9-
^This issue is fixed in Userkit 20170928 https://github.com/CosmosOS/Cosmos/releases/tag/Userkit_20170928

source/Cosmos.Core_Plugs/System/BufferImpl.cs

-15
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,11 @@
11
using System;
2-
using Cosmos.IL2CPU.API;
32
using Cosmos.IL2CPU.API.Attribs;
43

54
namespace Cosmos.Core_Plugs.System
65
{
76
[Plug(Target = typeof(Buffer))]
87
public class BufferImpl
98
{
10-
// __Memcpy doesn't exist in net core
11-
//[PlugMethod(IsOptional = true)]
12-
//public static unsafe void __Memcpy(byte* src, byte* dest, int count)
13-
//{
14-
// Buffer.BlockCopy((Array)(object)*src, 0, (Array)(object)*dest, 0, count);
15-
//}
16-
17-
//[PlugMethod(IsOptional = true)]
18-
//public static unsafe void __Memcpy(byte* src, byte* dest, long count)
19-
//{
20-
// // TODO: Cast could cause a loss of data.
21-
// Buffer.BlockCopy((Array)(object)*src, 0, (Array)(object)*dest, 0, (int) count);
22-
//}
23-
249
/// <summary>
2510
/// The memmove() function copies n bytes from memory area src to memory area dest.
2611
/// The memory areas may overlap: copying takes place as though the bytes in src

0 commit comments

Comments
 (0)