ft: introduce modrm macro for leaner matching

All instructions which use a modrm instruction
for memory reads from or into a register can
make use of this macro
This commit is contained in:
2025-05-12 19:53:25 +09:00
parent 317b5e5db4
commit 51b28b3bac
4 changed files with 51 additions and 16 deletions

View File

@@ -2,6 +2,7 @@ use clap::{Parser, Subcommand};
mod aout;
mod disasm;
mod disasm_macros;
mod instructions;
#[derive(Subcommand, Debug)]