From c76f9ef525d7d781c33dcb6491ccdbce580ac66a Mon Sep 17 00:00:00 2001 From: Milton Date: Mon, 17 Jul 2023 08:04:45 -0300 Subject: [PATCH] Delete unused file --- src/instruction.c | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 src/instruction.c diff --git a/src/instruction.c b/src/instruction.c deleted file mode 100644 index e7214af..0000000 --- a/src/instruction.c +++ /dev/null @@ -1,8 +0,0 @@ -#include "instruction.h" - -unsigned int instruction_size(Instruction ins) { - if (ins.op1_addr == Imm) - return 2; - else - return 1; -}