y86_lib/
lib.rs

1/// Y86 Assembler, can be used to generate the machine code
2/// associated with a Y86 file
3pub mod assembler;
4
5/// More accurately a debugger
6/// Can execute Y86 machine code, can also step through
7/// instructions and set breakpoints
8pub mod executer;
9
10///Simple number parser, can parse hex and decimal values
11pub mod number_parser;