#ifndef INSTRUCTION_EXECUTOR_H
#define INSTRUCTION_EXECUTOR_H
#include "cpu.h"
int execute_instruction_on_cpu(CPU *cpu, uint32_t instruction);
#endif