Original author(s) Development status Active Type IDE | Stable release 4.0.3 / January, 2016 | |
Operating system |
CPU Sim is a software development environment for the simulation of simple computers. It was developed by Dale Skrien to help students understand computer architectures. With this application the user is able to simulate new or existing simple CPUs. Users can create new virtual CPUs with custom machine language instructions, which are implemented by a sequence of micro instructions. CPU Sim allows the user to edit and run assembly language programs for the CPU being simulated.
Contents
CPU Sim has been programmed using the Java Swing package. This means that it's platform independent (runs on every platform that has a Java virtual machine installed).
Wombat 1 Sample CPU
A sample computer system, the Wombat 1, is provided with CPU Sim. It has the following registers:
The assembly language of the Wombat 1 computer consists of 12 instructions. Each instruction is stored on 16 bits, the first 4 are the Opcode and the other 12 are the address field.
Features
CPU Sim has the following features:
Example program for the Wombat 1 CPU
This program reads in integers until a negative integer is read. It then outputs the sum of all the positive integers.
Start: read // read n -> acc jmpn Done // jump to Done if n < 0. add sum // add sum to the acc store sum // store the new sum jump Start // go back & read in next numberDone: load sum // load the final sum write // write the final sum stop // stopsum: .data 2 0 // 2-byte location where sum is storedThe following modification of the program is also used sometimes:
Start: read // read n -> acc jmpz Done // jump to Done if n is 0. add sum // add sum to the acc store sum // store the new sum jump Start // go back & read in next numberDone: load sum // load the final sum write // write the final sum stop // stopsum: .data 2 0 // 2-byte location where sum is storedthis one can use negative input to subtract, or 0 to break the loop.