10 lines
290 B
C
10 lines
290 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "memory_map.h"
|
|
#include "state.h"
|
|
#include "decode.h"
|
|
|
|
enum decode_status decode_and_print_instruction(struct architectural_state * state, struct memory_map * map, uint16_t code, char const ** instruction_buf, char * operand_buf, uint32_t size);
|