sh-dis/c/decode_execute.h
Zack Buhman 8a300ba4c6 initial SH4 emulator implementation in C
This currently only implements the SH2 instructions.
2024-04-22 20:53:36 +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);