1 /*
2   PC
3   Program counter control
4   JBS 15 June 1994
5 */
6 
7 #ifndef _PC_
8 
9 #define _PC_
10 
11 #include "types.h"
12 
13 word pc_page(void);
14 word pc_offset(void);
15 
16 void set_pc(word, signed_word);
17 void move_pc(word);
18 byte next_byte(void);
19 word next_word(void);
20 
21 #endif
22