criscv/include/instruction_executor.h

8 lines
152 B
C
Raw Normal View History

#ifndef INSTRUCTION_EXECUTOR_H
#define INSTRUCTION_EXECUTOR_H
2024-10-15 13:30:45 +02:00
#include "cpu.h"
int execute_instruction_on_cpu(CPU *cpu, uint32_t instruction);
#endif