blob: 210d3cbef364efe907376022382dd44749339e0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef MARKERS_H
#define MARKERS_H
#include "machine_type.h"
#include "output.h"
#include "datatypes.h"
void* initmarkers();
int parsemarkerfile(tMarkers* markers,char* filename);
tInt8 gotomask(tOutput* output,tMarkers* markers,tUInt64* cursorpos,tInt64 baseaddr);
#endif
|