vm_translator 0.3.0

A VM translator for the hack machine (ref: The Element Of Compting System)
Documentation
1
2
3
4
5
6
7
8
use std::env;

use vm_translator::vm_translator;

fn main() {
    println!("Translation from vm code to hack assembly code!");
    vm_translator(env::args());
}