vote up 2 vote down star
2

I'm interested in programming a virtual machine, nothing as fancy as virtualbox or vmware, but something that can emulate a simple architecture, be it cisc or risc, say the Zilog, SPARC, MIPS, or 80686 architecture models.

I suppose by doing this it would be relatively simple to make an emulator of the same kind, I'm just interested in using this for experience more than anything else (being my first C project, I'd rather do this in C than in anything else)

Thanks for your tips!

flag
10  
I'd start with something simpler as my first C project. – Jeremy Stein Nov 5 at 5:34
I've chosen to do this :) – whoozat Nov 5 at 5:35
And you should still choose something simpler as a first C project. – jmucchiello Nov 5 at 7:02
Why are you so negative. Aim for the stars and you will get to the tree tops! – erikkallen Nov 5 at 10:01
Jeremy Stein, jmucchiello, what would you recommend? :) – whoozat Nov 5 at 20:08
show 1 more comment

5 Answers

vote up 1 vote down

Something from the Zilog era would be good because you can probably find some software that ran on real Z-80 machines and use that as a final test.

The first real program that I wrote (other than one page class assignments) was an emulator for the HP2100A minicomputer that I had used in high-school. I wrote that in B, the predecessor of C, and I don't think that this is too hard for a first C program. If anything, it might be too simple. Of course something like the 80686 is far more challenging than a Z-80 but it's already been done by QEMU, VirtualBox, and others.

The hardest part of this will be the whole interupt system that connects the machine to the external world.

You might want to read up about LLVM and decide whether you really want to write a VM or an emulator.

link|flag
vote up 1 vote down

A common exercise is to build a straightforward calculator. It has only a limited number of operations (typically 4, * / + -), one datatype (number) and you probably have a very good understanding of how it should work. That makes debugging a lot easier.

Despite the simplicity, you already have to deal with some fundamental VM problems. You need to parse an sequence of command, store multiple objects you're working on, and deal with output.

Coincidentally, calculator ICs are the forerunners of CPUs, so this approach also makes sense from a historical perspective.

link|flag
vote up 1 vote down

A few thoughts:

  • The older instruction sets will be simpler, so they might be a good place to start.
  • Choose a risc architecture: decoding the instruction stream will be much easier.
  • Ignore things like interrupts, NMIs, etc.
  • There's always a lot of fiddly detail in accurately emulating booting. Instead, pick something very simple like starting execution at address zero, with all registers set to zero.
  • Real programs will need things like real hardware emulation as well, so don't do that.
  • You might want to extend the instruction set with a few special i/o instructions to read a number, write a character (or even a string), etc, so that you can write simple test programs that actually do very simple i/o.
  • Parsing an object file format like elf can be a lot of work all by itself. With tools like objdump, you can probably extract just the text section (ie, the instructions) as binary (at least ascii hex).
  • Start by writing a disassembler for whatever instruction set you want to emulate, or at least for the initial subset you'll shoot for. You'll need it for debugging anyway.
  • Find out how to get gas (gnu assembler) for your chosen instruction set working so you can produce known good object files and test programs.

Unless you have knowledge of other programming languages, and/or a reasonable understanding of assembler, this is a pretty challenging first C project. Never the less, good luck!

link|flag
MIPS and SPARC both have extensive treatment as "teaching" architectures in both literature and on the Internet, so you might go with those over something complicated like x86. – Steven Schlansker Nov 5 at 7:14
vote up 3 vote down

Check what others have done in this area!

A good way to pick-up info about a particular type of application (and in your case a good way to pick up c idioms as well) is by looking at the structure and the detail of an open source project of the same type. One may decide to merely peek, briefly review and then "forget", in order to start one's very own project from scratch, but in all cases this type of visit is beneficial.

Since you mentioned "simple architecture" and Zilog, I figured the Z80 processor could be a good match. For various reasons there are many current and past projects in the Z80 emulator genre. BTW, one of the reasons is that many older slot-type video consoles were running on Z80, which prompted nostalgic gamers to write emulators to run their old favorites ;-)

An example of such a project is YAZE-AG which includes both a full Z80 emulator as well as C/PM. The whole thing is written in C. Also it is relatively mature (Version 2.x) and active. I'm guessing this is the work of a very small team (possibly of one ;-) ).

Good luck!

link|flag
+1. GREAT answer! – David Stratton Nov 5 at 14:03
vote up 1 vote down

This is not a product endorsement, but an observation...

I'd pick up a Deitel and Deitel book to start with. (probably this one if you're looking to do it in C) They always seem to have one chapter on making a virtual machine, along with some instructions for writing assembler code for your virtual machine, regardless of the language they're teaching.

Edit - Added

(although I'd check it out at a library before buying it in case I'm misunderstanding what it is you want to write)

link|flag
Thanks, very nice tip; shows grand levels of experience! – whoozat Nov 5 at 5:40
Just to be a smart aleck: Those names are spelled with E before I, i.e. "Deitel". Knowing that will make it easier to look them up :) – Carl Smotricz Nov 5 at 5:45
Thanks @Carl Smotricz, for the catch in my spelling, and thanks @Grahamn Lee for editing and correcting it! – David Stratton Nov 5 at 14:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.