|
|
| version 1.11, 2004/08/12 11:03:08 | version 1.16, 2004/08/14 12:16:17 |
|---|---|
| Line 1 | Line 1 |
| typedef struct { | typedef struct { |
| UINT8 ROM_TYPE; | UINT8 ROM_TYPE; |
| UINT8 __CPU8MHz; | |
| UINT8 DIP_SW; | UINT8 DIP_SW; |
| UINT8 fddequip; | |
| UINT8 DISPSYNC; | UINT8 DISPSYNC; |
| UINT8 RASTER; | UINT8 RASTER; |
| 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; |
| } CORESTAT; | } CORESTAT; |
| enum { | enum { |
| RASTER_CLOCK = 250 | |
| }; | |
| enum { | |
| DIPSW_RESOLUTE = 0x01, | DIPSW_RESOLUTE = 0x01, |
| DIPSW_BOOTMEDIA = 0x04 | DIPSW_BOOTMEDIA = 0x04 |
| }; | }; |
| Line 58 extern const OEMCHAR xmilversion[]; | Line 54 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); |