|
|
| version 1.1, 2003/11/11 16:33:50 | version 1.4, 2004/01/13 05:30:58 |
|---|---|
| Line 3 | Line 3 |
| #include "np2.h" | #include "np2.h" |
| #include "scrnmng.h" | #include "scrnmng.h" |
| #include "np2info.h" | #include "np2info.h" |
| #include "i286.h" | #include "cpucore.h" |
| #include "memory.h" | |
| #include "pccore.h" | #include "pccore.h" |
| #include "iocore.h" | #include "iocore.h" |
| #include "bios.h" | #include "bios.h" |
| Line 68 static void info_ver(char *str, int maxl | Line 67 static void info_ver(char *str, int maxl |
| static void info_cpu(char *str, int maxlen) { | static void info_cpu(char *str, int maxlen) { |
| milstr_ncpy(str, (CPUTYPE & CPUTYPE_V30)?str_V30:str_i286, maxlen); | milstr_ncpy(str, (CPU_TYPE & CPUTYPE_V30)?str_V30:str_i286, maxlen); |
| } | } |
| static void info_clock(char *str, int maxlen) { | static void info_clock(char *str, int maxlen) { |
| Line 76 static void info_clock(char *str, int ma | Line 75 static void info_clock(char *str, int ma |
| UINT32 clock; | UINT32 clock; |
| char clockstr[16]; | char clockstr[16]; |
| clock = (pc.realclock + 50000) / 100000; | clock = (pccore.realclock + 50000) / 100000; |
| SPRINTF(clockstr, str_clockfmt, clock/10, clock % 10); | SPRINTF(clockstr, str_clockfmt, clock/10, clock % 10); |
| milstr_ncpy(str, clockstr, maxlen); | milstr_ncpy(str, clockstr, maxlen); |
| } | } |
| static void info_base(char *str, int maxlen) { | static void info_base(char *str, int maxlen) { |
| milstr_ncpy(str, (pc.baseclock == PCBASECLOCK25)?str_5MHz:str_8MHz, | milstr_ncpy(str, (pccore.baseclock == PCBASECLOCK25)?str_5MHz:str_8MHz, |
| maxlen); | maxlen); |
| } | } |