Skip to content

Instantly share code, notes, and snippets.

View redwyre's full-sized avatar

Simon redwyre

View GitHub Profile
@redwyre
redwyre / install.sh
Last active June 22, 2022 13:45
Install file to install dotnet 6 prerequisites for Eco server
#!/bin/bash
# Install prerequisites for Eco Server on Linux
# While the linux build of Eco Server is unsupported, please report any
# issues to https://github.com/StrangeLoopGames/EcoIssues/issues
# For more details about requirements for .net, see https://github.com/dotnet/core/blob/main/release-notes/6.0/linux-packages.md
echo "Eco Server prerequisites"
echo "This script will install packages which are required to run the server for supported operating systems"
@redwyre
redwyre / Test.asm
Created February 18, 2013 15:18
compiling a std::function, in vs2012, release win32 build
int Test(int a)
{
00931000 push ebp
00931001 mov ebp,esp
return a + a;
00931003 mov eax,dword ptr [a]
00931006 add eax,eax
}
00931008 pop ebp
00931009 ret