Blame view

disasm.h 317 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
//
// 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"
13
#include "debug.h"
14
15

extern uint16_t fetch();
16
void disassemble_program(uint32_t length);
17
18

#endif //SYNACORVM_DISASM_H