Skip to content

Instantly share code, notes, and snippets.

View rbran's full-sized avatar
🦜

Rubens Brandão rbran

🦜
View GitHub Profile
pub struct Architecture {
pub name: String,
}
#[derive(Clone, Copy)]
pub struct RegisterInfo;
#[derive(Clone, Copy, Hash, PartialEq, Eq)]
pub struct Register;
#[derive(Clone, Copy)]
pub struct RegisterStackInfo;
@rbran
rbran / 6502.txt
Last active August 20, 2024 10:59
List of 6502 instructions generated using ghidra sleigh with sleigh-rs
NOTE: bits are from least to most significant, 'X' means the value could not be defined as a single bit.
name DEC:
bits 01100011
bits 01110011
bits 01101011
bits 01111011
name INC:
bits 01100111
bits 01110111
bits 01101111