#emulation #gba #arm

armv4t_emu

An emulator for the ARMv4t instruction set

1 unstable release

0.1.0 May 2, 2020

#131 in Emulators

Download history 4/week @ 2023-11-27 70/week @ 2023-12-04 2/week @ 2023-12-11 24/week @ 2023-12-18 51/week @ 2023-12-25 205/week @ 2024-01-01 128/week @ 2024-01-08 142/week @ 2024-01-15 112/week @ 2024-01-22 78/week @ 2024-01-29 70/week @ 2024-02-05 40/week @ 2024-02-12 63/week @ 2024-02-19 59/week @ 2024-02-26 100/week @ 2024-03-04 170/week @ 2024-03-11

395 downloads per month
Used in gdbstub

MIT license

4MB
2K SLoC

armv4t_emu

An emulator for the ARMv4T instruction set, written in Rust.

Initially written as part of iburinoc's Gameboy Advance emulator, armv4t_emu is now a standalone library that's ready to be used in any project that might need it!

At the moment, the crate is almost feature complete, and is capable of running large programs (ostensibly) successfully. See the issue tracker for a list of missing / incomplete features.

Example

use armv4t_emu::{reg, Cpu, ExampleMem, Mode, Memory};

let prog = &[
    0x06, 0x00, 0xa0, 0xe3, //    mov r0, #6
    0x01, 0x10, 0xa0, 0xe3, //    mov r1, #1
    0x01, 0x10, 0x81, 0xe0, // l: add r1, r1, r1
    0x01, 0x00, 0x50, 0xe2, //    subs r0, #1
    0xfc, 0xff, 0xff, 0x1a, //    bne l
    0x01, 0x6c, 0xa0, 0xe3, //    mov r6, #0x100
    0x00, 0x10, 0x86, 0xe5, //    str r1, [r6]
    0xf7, 0xf0, 0xde, 0xad  // ; trigger undefined instr exception
];
let mut mem = ExampleMem::new_with_data(prog);
let mut cpu = Cpu::new();
cpu.reg_set(Mode::User, reg::PC, 0x00);
cpu.reg_set(Mode::User, reg::CPSR, 0x10);

while cpu.step(&mut mem) {}

assert_eq!(64, mem.r32(0x100));

Optional Features

There are a couple of optional features that you may want to enable, providing various bits of functionality / debugging enhancements. These are disabled by default, as though they do bloat compile times.

Feature Description
advanced_disasm Uses capstone to disassemble + log instructions. Warning: Substantially increases compile times.*
serde Adds Serialize and Deserialize derives on important types/structs.

* Instead of debugging emulated code by creating a ad-hoc, application-specific debugger, consider using the gdbstub crate.

Missing Features

At the moment, this crate's feature set is primarily motivated by whatever functionality it's dependent projects require. As such, there are several features of the ARMv4T instruction set which are not implemented at this time:

  • Custom co-processor support (see #3)
  • Big-Endian support (see #4)
  • Support for "cycle accurate" emulation
    • This would be tricky to implement, as armv4t_emu isn't an emulator for any particular ARMv4T CPU.
    • Theoretically, this could be implemented by modifying the public API to accept some kind of platform-specific timing information.

Dependencies