10 lines
226 B
C
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);
|