disasm.h
317 Bytes
//
// Created by imanol on 12/25/16.
//
#ifndef SYNACORVM_DISASM_H
#define SYNACORVM_DISASM_H
#include <stdio.h>
#include <stdint.h>
#include "registers.h"
#include "mem.h"
#include "instructions.h"
#include "debug.h"
extern uint16_t fetch();
void disassemble_program(uint32_t length);
#endif //SYNACORVM_DISASM_H