sh-dis/c/decode_execute.h
Zack Buhman b6c629baad initial SH4 emulator implementation in C
This currently only implements the SH2 instructions.
2024-04-21 20:54:32 +08:00

10 lines
226 B
C

#pragma once
#include <stdint.h>
#include "memory_map.h"
#include "state.h"
#include "decode.h"
enum decode_status decode_and_execute_instruction(struct architectural_state * state, struct memory_map * map, uint16_t code);