|
|
| version 1.12, 2003/11/07 20:07:58 | version 1.15, 2003/11/13 07:47:17 |
|---|---|
| Line 29 | Line 29 |
| #include "calendar.h" | #include "calendar.h" |
| #include "timing.h" | #include "timing.h" |
| //#include "hostdrv.h" | //#include "hostdrv.h" |
| #include "debugsub.h" | |
| const char np2version[] = NP2VER_CORE; | const char np2version[] = NP2VER_CORE; |
| Line 36 | Line 37 |
| NP2CFG np2cfg = { | NP2CFG np2cfg = { |
| PCBASECLOCK25, 4, 0, | PCBASECLOCK25, 4, 0, |
| {0x3e, 0x63, 0x7a}, | {0x3e, 0x63, 0x7a}, |
| {0x48, 0x05, 0x0c, 0x00, 0x01, 0x00, 0x00, 0x6E}, | {0x48, 0x05, 0x04, 0x00, 0x01, 0x00, 0x00, 0x6E}, |
| {0x0c, 0x0c, 0x08, 0x06, 0x03, 0x0c}, | {0x0c, 0x0c, 0x08, 0x06, 0x03, 0x0c}, |
| {1, 1, 6, 1, 8, 1}, | {1, 1, 6, 1, 8, 1}, |
| 0, 4, 32, 22050, 800, 0, 1, 1, 0, | 0, 4, 32, 22050, 800, 0, 1, 1, 0, |
| Line 61 | Line 62 |
| 100, 20, | 100, 20, |
| 0}; | 0}; |
| // on=0, off=1 | // // on=0, off=1 |
| BYTE dip_default[3] = {0x3e, 0x63, 0x7a}; | // BYTE dip_default[3] = {0x3e, 0x63, 0x7a}; |
| BYTE msw_default[8] = {0x48, 0x05, 0x04, 0x00, 0x01, 0x00, 0x00, 0x6E}; | static const BYTE msw_default[8] = |
| {0x48, 0x05, 0x04, 0x00, 0x01, 0x00, 0x00, 0x6E}; | |
| BYTE screenupdate = 3; | BYTE screenupdate = 3; |
| int screendispflag = 1; | int screendispflag = 1; |
| Line 71 | Line 73 |
| BOOL drawframe; | BOOL drawframe; |
| UINT drawcount = 0; | UINT drawcount = 0; |
| BYTE mem[0x200000]; // ver0.28 | BYTE mem[0x200000]; |
| // --------------------------------------------------------------------------- | // --------------------------------------------------------------------------- |
| static void setvsyncclock(void) { // ver0.28 | static void setvsyncclock(void) { |
| UINT vfp; | UINT vfp; |
| UINT vbp; | UINT vbp; |
| Line 514 void pccore_exec(BOOL draw) { | Line 516 void pccore_exec(BOOL draw) { |
| i286_resetprefetch(); | i286_resetprefetch(); |
| } | } |
| #if 1 // ndef TRACE | #if 1 // ndef TRACE |
| if (I286_REMCLOCK > 0) { | if (I286_REMCLOCK > 0) { |
| if (!(CPUTYPE & CPUTYPE_V30)) { | if (!(CPUTYPE & CPUTYPE_V30)) { |
| i286(); | i286(); |
| Line 524 void pccore_exec(BOOL draw) { | Line 526 void pccore_exec(BOOL draw) { |
| } | } |
| } | } |
| #else | #else |
| while(nevent.remainclock > 0) { | while(I286_REMCLOCK > 0) { |
| { | |
| static FILEH fh = FILEH_INVALID; | |
| if (I286_CS == 0x0e14) { | |
| if (fh == FILEH_INVALID) { | |
| fh = file_create("log.txt"); | |
| } | |
| } | |
| if (fh != FILEH_INVALID) { | |
| char buf[32]; | |
| wsprintf(buf, "%.4x:%.4x\r\n", I286_CS, I286_IP); | |
| file_write(fh, buf, strlen(buf)); | |
| } | |
| } | |
| i286_step(); | i286_step(); |
| } | } |
| #endif | #endif |