1 #define SETLO(v,x) v = ((v) & 0xf0) | (x)
2 #define SETHI(v,x) v = ((v) & 0x0f) | ((x) << 4)
3 #define CTRL(c) ((c) & 037)
5 #define KEY_TAB 9 // this also happens to be ^i...
14 int instrx
, instry
, instroffs
;
16 int songx
, songy
, songoffs
;
17 int trackx
, tracky
, trackoffs
;
18 int currtrack
, currinstr
;
29 void initsonglines(void);
30 void inittracks(void);
31 void initinstrs(void);
33 void drawsonged(int x
, int y
, int height
);
34 void drawtracked(int x
, int y
, int height
);
35 void drawinstred(int x
, int y
, int height
);
43 void setdisplay(char *str
);