Bedrock

Bedrock is a compact and portable 16-bit computer system, designed to be quick to implement and use.

Specifications

Core specifications

Auxillary specifications

Manual

Assemblers

Emulators

bedrock-pc

bedrock-pc is a Bedrock assembler and emulator for Windows and Linux computers, written in Rust.

Source code can be found at code.benbridle.com/bedrock-pc.

The latest release is available from br-1.0.0-alpha4 as a pre-built Linux executable.

bedrock-nds

bedrock-nds is a Bedrock emulator for the Nintendo DS console. The program is written in C, using the BlocksDS SDK and libnds.

Source code can be found at code.benbridle.com/bedrock-nds.

REPL

The following bash program will provide a workable REPL environment for testing small pieces of Bedrock code. It assumes that the bedrock-pc emulator is available to the system as br.

#!/bin/bash
while true; do
    read -r -e -p ">>> " SOURCE &&
    echo "${SOURCE} HLT" | br asm | br -d -z 3;
    echo;
done

Programs

Applications

Utilities

Demos

Benchmarks