sh-dis/c/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

8 lines
207 B
C

#pragma once
#include "memory_map.h"
#include "state.h"
uint16_t fetch(struct architectural_state * state, struct memory_map * map);
void step(struct architectural_state * state, struct memory_map * mem);