Manchester Small-Scale Experimental Machine "Baby" Emulator Library

crates.io Released API docs MIT licensed

This library provides a collections of types and methods for emulating & assembling code for the Machester Baby, the first program stored computer.

Explaination

The Manchester "Baby" was the first computer to store both its program code and data in a common randomly-accessible memory, it is for this reason the Baby is considered the first machine to run "true" software, providing a familiar (abeit, primitive) programming environment to anyone familiar with assembly, this library can be included in a variety of software and platforms allowing emulation functionality of this historic machine.

This library provides an interface for emulating the Baby as a bytecode interpreter (baby_emulator::core), and also a library for assembling asm using both modern and original asm notations into a format that can be ran by the emulator (baby_emulator::assmebler).

Please log any questions or issues to the GitHub repo.

Installation

Command line: text cargo add baby-emulator

Cargo.toml: text baby-emulator = "0.1.4"

Example

This shows a few short examples of what this library is capable of, designed to be a starting point allowing further experimentation by the "user". See the docs for further examples and info.

Bytecode Interpreter Emulation

The core of this library is baby_emulator::core::BabyModel, this struct has fields representing all of the Baby's internal registers and 32 word memory, you can initialise this struct with an array of [i32; 32], this array can contain the program code instructions starting at position 0.

This example runs an example program that adds 5 to 5 and stores the result in the accumulator. Running here is done with the run_loop method, this method will simply execute sucessive instructions until either an error is thrown (like a stop instruction), or the number os iterations exceeds the specified limmit.

```rust use babyemulator::core::BabyModel; use babyemulator::core::errors::BabyErrors; use baby_emulator::core::errors::BabyError;

let model = BabyModel::newexampleprogram(); match model.runloop(100) { (model, BabyErrors::Stop()) => println!("{}", model.coredump()), (, err) => println!("{}", err.get_descriptor()) } ```

You can also single set through an emulation, executing a single instruction at a time using the execute method and seeing the direct result.

```rust use babyemulator::core::BabyModel; use babyemulator::core::errors::BabyError;

let model = BabyModel::newexampleprogram(); match model.execute() { Ok(m) => println!("{}", m.coredump()), Err(e) => println!("Error {}", e.getdescriptor()) } ```

Assembly

Here is an example of assembling a Baby asm string using modern notation, then running the resultant program, see the baby_emulator::assembler docs for more information:

```rust use babyemulator::assembler::assemble; use babyemulator::core::{BabyModel, instructions::BabyInstruction};

const ASM: &str = " ldn $start_value ; Loads 10 into the accumulator

:loopstart sub $subtractval ; Subtract 1 from the accumulator cmp ; Skip the next jump instruction if the accumulator is negative jmp $loop_start ; Jump to the start of the loop stp ; Program stops when the accumulator is negative

:subtract_val ; Value to be subtracted abs 0d1

:start_value ; Value to start in the accumulator abs 0d-10 ";

fn main() { let instructions = match assemble(&String::from(ASM), false) { Ok(v) => v, Err(e) => { println!("{}", e.describe(true)); return; } }; let mainstore = BabyInstruction::tonumbers(instructions);

let mut model = BabyModel::new_with_program(main_store);
loop {
    model = match model.execute() {
        Ok(m) => m,
        Err(_) => break
    };
}
println!("{}", model.core_dump());

} ```