Newer
Older
emul / emul_label.h
#ifndef EMUL_LABEL__
#define EMUL_LABEL__

#define LABEL_COUNT_MAX 100
#define LABEL_NAME_LENGTH_MAX 128 

typedef struct {
  char name[LABEL_NAME_LENGTH_MAX];
  int address;
} EMUL_LABEL;

void emul_label_set(char *) {
}

#endif