- [FIX] En la finestra de desensamblat el cursor sempre anava una instrucció per darrere - [ONGOING] 'Next' funciona intermitentment, no entenc perqué
13 lines
267 B
C++
13 lines
267 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace z80dis
|
|
{
|
|
void loadSymbols();
|
|
const char *getAsm(const uint16_t pos);
|
|
const char *getOpcode(const uint16_t pos);
|
|
const int getOpcodeSize(const uint16_t pos);
|
|
const char *getSymbol(const uint16_t pos);
|
|
}
|