summaryrefslogtreecommitdiff
path: root/src/hc08/hc08.h
blob: aa0f4406247aa724eaa71584d390a8340a232dc0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
typedef enum
  {
    SUB_HC08,
    SUB_S08
  }
HC08_SUB_PORT;

typedef struct
  {
    HC08_SUB_PORT sub;
  }
HC08_OPTS;

extern HC08_OPTS hc08_opts;

#define IS_HC08 (hc08_opts.sub == SUB_HC08)
#define IS_S08 (hc08_opts.sub == SUB_S08)