Click here to Skip to main content
15,895,142 members
Articles / General Programming / Algorithms

A Simulator for Knuth's MIX Computer

Rate me:
Please Sign up or sign in to vote.
4.91/5 (26 votes)
2 Feb 2011CPOL7 min read 55.9K   668   34  
Assembler and Simulator for Don Knuth's MIX Computer from The Art of Computer Programming.

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MIX", "MIX\MIX.csproj", "{8FC52E82-584C-4247-890E-EBEF3C045A74}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MIXLib", "MIXLib\MIXLib.csproj", "{5A13219C-54BF-4368-9379-3FD5BDC65C76}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MIXAsm", "MIXAsm\MIXAsm.csproj", "{EE59ABE9-5D6B-4AF3-B4EE-CBDAC9754D64}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{8FC52E82-584C-4247-890E-EBEF3C045A74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{8FC52E82-584C-4247-890E-EBEF3C045A74}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{8FC52E82-584C-4247-890E-EBEF3C045A74}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{8FC52E82-584C-4247-890E-EBEF3C045A74}.Release|Any CPU.Build.0 = Release|Any CPU
		{5A13219C-54BF-4368-9379-3FD5BDC65C76}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{5A13219C-54BF-4368-9379-3FD5BDC65C76}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{5A13219C-54BF-4368-9379-3FD5BDC65C76}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{5A13219C-54BF-4368-9379-3FD5BDC65C76}.Release|Any CPU.Build.0 = Release|Any CPU
		{EE59ABE9-5D6B-4AF3-B4EE-CBDAC9754D64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{EE59ABE9-5D6B-4AF3-B4EE-CBDAC9754D64}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{EE59ABE9-5D6B-4AF3-B4EE-CBDAC9754D64}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{EE59ABE9-5D6B-4AF3-B4EE-CBDAC9754D64}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer
Greece Greece
I am a software developer (mainly in C# and T-SQL) for a project management company in Athens, Greece. I have been working with computers since early 1987. I am adept at Pascal, C, C++, Java (my MSc was sponsored by Sun Microsystems), Lisp, Scheme, F#, C# VB.Net, Perl and some others that are too obscure to mention. When I want a quick and dirty solution to a programming problem I use a functional language, such as Haskell, Scheme or, more recently, F#.

I also play the keyboards and compose music.

---------------------------------------------------------

MSc Distributed Systems and Networks - University of Kent at Canterbury
BEng Computer Systems Engineering - University of Kent at Canterbury

Comments and Discussions