snes_address 0.1.0

A library for translating memory address for SNES games
Documentation
1
2
3
4
5
6
7
use thiserror::Error;

#[derive(Error, Debug, PartialEq)]
pub enum AddressError {
    #[error("The translated address would be out of bounds")]
    OutOfBounds,
}