gbbirkisson / hemul

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hemul

GitHub last commit (branch) CI codecov GitHub

Emulation of the 6502 micro processor, because why not šŸ¤· The project is named h[emu]l after the "Hemul" from the "Moomin" francise.

Requirements

You will need these binaries in your path to do testing:

Running the emulator

With assembly code:

$ cat << EOF | cargo run -p hemul-cli -- -b - -a
    ; 1 + 2
    LDA     #01
    ADC     #02
    STA     $0402
    NOP
EOF

Note

You will need vasm6502_oldstyle in your PATH to run this command!

Resources

About

License:GNU General Public License v3.0


Languages

Language:Rust 98.9%Language:Makefile 1.1%