mirror of
https://github.com/mrkite/regs.git
synced 2024-11-25 07:32:27 +00:00
39 lines
649 B
C
39 lines
649 B
C
#pragma once
|
|
|
|
/**
|
|
* @copyright 2018 Sean Kasun
|
|
* The memory map for the tracing disassembler
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef enum {
|
|
IsData = 0x01,
|
|
IsOpcode = 0x02,
|
|
IsOperand = 0x04,
|
|
IsX8 = 0x10,
|
|
IsM8 = 0x20,
|
|
IsEmu = 0x100,
|
|
IsFlags = 0xff013f,
|
|
IsX8Changed = 0x200,
|
|
IsM8Changed = 0x400,
|
|
IsEmuChanged = 0x2000,
|
|
} MapFlags;
|
|
|
|
typedef struct Rule {
|
|
uint32_t address;
|
|
uint16_t flags;
|
|
char *symbol;
|
|
struct Rule *next;
|
|
} Rule;
|
|
|
|
typedef struct {
|
|
Rule *rules;
|
|
uint32_t minMemory;
|
|
uint32_t maxMemory;
|
|
MapFlags *mem;
|
|
const char *filename;
|
|
} Map;
|
|
|
|
extern Map *loadMap(const char *filename, uint32_t org, MapFlags flags);
|