cambridge-asm 0.1.1

Run pseudoassembly from Cambridge International syllabus 9618
// Copyright (c) 2021 Saadi Save
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

use super::{Context, Op};

pub fn add(ctx: &mut Context, op: Op) {
    let x = op
        .expect("No operand")
        .parse()
        .expect("Operand is not an integer");

    ctx.acc += ctx.mem.get(&x);

    ctx.increment();
}

pub fn addm(ctx: &mut Context, op: Op) {
    let x: usize = op
        .expect("No operand")
        .parse()
        .expect("Operand is not an integer");

    ctx.acc += x;

    ctx.increment();
}

pub fn sub(ctx: &mut Context, op: Op) {
    let x = op
        .expect("No operand")
        .parse()
        .expect("Operand is not an integer");

    ctx.acc -= ctx.mem.get(&x);

    ctx.increment();
}

pub fn subm(ctx: &mut Context, op: Op) {
    let x: usize = op
        .expect("No operand")
        .parse()
        .expect("Operand is not an integer");

    ctx.acc -= x;

    ctx.increment();
}

pub fn inc(ctx: &mut Context, op: Op) {
    let x = op
        .expect("No operand");

    match x.as_str() {
        "ix" | "IX" => ctx.ix += 1,
        "acc" | "ACC" => ctx.acc += 1,
        _ => panic!("{} is an invalid register", &x)
    }

    ctx.increment();
}

pub fn dec(ctx: &mut Context, op: Op) {
    let x = op
        .expect("No operand");

    match x.as_str() {
        "ix" | "IX" => ctx.ix -= 1,
        "acc" | "ACC" => ctx.acc -= 1,
        _ => panic!("{} is an invalid register", &x)
    }

    ctx.increment();
}