|
|
| version 1.12, 2004/08/12 14:03:14 | version 1.15, 2004/08/13 04:08:33 |
|---|---|
| Line 32 typedef struct { | Line 32 typedef struct { |
| } PCCORE; | } PCCORE; |
| typedef struct { | typedef struct { |
| UINT tl; | SINT32 dispclock; |
| UINT vl; | SINT32 syncclock; |
| UINT8 vsync; | UINT8 vsync; |
| UINT8 drawframe; | UINT8 drawframe; |
| UINT8 soundrenewal; | UINT8 soundrenewal; |
| Line 58 extern const OEMCHAR xmilversion[]; | Line 58 extern const OEMCHAR xmilversion[]; |
| extern XMILCFG xmilcfg; | extern XMILCFG xmilcfg; |
| extern PCCORE pccore; | extern PCCORE pccore; |
| extern CORESTAT corestat; | extern CORESTAT corestat; |
| extern BYTE *RAM0r; | extern UINT8 *RAM0r; |
| extern BYTE *RAM0w; | extern UINT8 *RAM0w; |
| extern BYTE mMAIN[0x10000]; | extern UINT8 mMAIN[0x10000]; |
| extern BYTE mBIOS[0x8000]; | extern UINT8 mBIOS[0x8000]; |
| #if defined(SUPPORT_BANKMEM) | #if defined(SUPPORT_BANKMEM) |
| extern BYTE mBANK[16][0x8000]; | extern UINT8 mBANK[16][0x8000]; |
| #endif | #endif |
| void neitem_disp(UINT id); | |
| UINT pccore_getraster(UINT *h); | void neitem_vsync(UINT id); |
| void nvitem_vdisp(UINT id); | |
| void nvitem_vsync(UINT id); | |
| void pccore_initialize(void); | void pccore_initialize(void); |
| void pccore_reset(void); | void pccore_reset(void); |