]> Shamusworld >> Repos - virtualjaguar/blob - src/include/objectp.h
Changes for the upcoming 1.0.5 release
[virtualjaguar] / src / include / objectp.h
1 #ifndef __OBJECTP_H__
2 #define __OBJECTP_H__
3
4 #include "types.h"
5
6 void op_init(void);
7 void op_reset(void);
8 void op_done(void);
9
10 uint8 OPReadByte(uint32, uint32 who = UNKNOWN);
11 uint16 OPReadWord(uint32, uint32 who = UNKNOWN);
12 void OPWriteByte(uint32, uint8, uint32 who = UNKNOWN);
13 void OPWriteWord(uint32, uint16, uint32 who = UNKNOWN);
14
15 uint32 op_get_list_pointer(void);
16 //void op_process_list(int16 * backbuffer, int scanline, bool render);
17 void op_set_status_register(uint32 data);
18 uint32 op_get_status_register(void);
19 void op_set_current_object(uint64 object);
20
21 // Replacement functions
22
23 void OPProcessList(int scanline, bool render);
24
25 #endif  // __OBJECTP_H__