From 3e184b0b47d203cd37089296e0c49c9219c83b26 Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Mon, 27 Feb 2023 20:40:26 +0100 Subject: Move instruction implementation in sub module and introduce insn prelude --- src/insn.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/insn.rs') diff --git a/src/insn.rs b/src/insn.rs index bb1a380..7c74dd9 100644 --- a/src/insn.rs +++ b/src/insn.rs @@ -1,3 +1,7 @@ +mod prelude; + +mod mov; + pub trait Mov { fn mov(&mut self, op1: T, op2: U); } -- cgit v1.2.3