|
|
| version 1.9, 2004/01/07 08:33:00 | version 1.10, 2004/01/09 04:36:02 |
|---|---|
| Line 6 | Line 6 |
| #include "iocore.h" | #include "iocore.h" |
| #include "bios.h" | #include "bios.h" |
| #include "sxsi.h" | #include "sxsi.h" |
| // #include "hostdrv.h" | #if defined(SUPPORT_HOSTDRV) |
| #include "hostdrv.h" | |
| #endif | |
| #define NP2SYSP_VER "C" | #define NP2SYSP_VER "B" |
| // #define NP2SYSP_CREDIT "" // 要るなら・・・ | // #define NP2SYSP_CREDIT "" // 要るなら・・・ |
| // NP2依存ポート | // NP2依存ポート |
| Line 169 static void cmd_sxsibios(const void *arg | Line 171 static void cmd_sxsibios(const void *arg |
| } | } |
| #if 0 | #if defined(SUPPORT_HOSTDRV) |
| // ---- hostdrv | // ---- hostdrv |
| enum { | enum { |
| Line 198 static void cmd_hostdrv(const void *arg1 | Line 200 static void cmd_hostdrv(const void *arg1 |
| hostdrv_intr(); | hostdrv_intr(); |
| break; | break; |
| } | } |
| (void)arg1; | |
| } | } |
| #endif | #endif |
| Line 244 static const SYSPCMD np2spcmd[] = { | Line 247 static const SYSPCMD np2spcmd[] = { |
| {str_clock, cmd_clock, NULL, 0}, | {str_clock, cmd_clock, NULL, 0}, |
| {str_multiple, cmd_multiple, NULL, 0}, | {str_multiple, cmd_multiple, NULL, 0}, |
| // version:C | |
| {str_sxsibios, cmd_sxsibios, NULL, 0}, | |
| #if 0 | |
| // extension | // extension |
| {str_sxsibios, cmd_sxsibios, NULL, 0}, | |
| #if defined(SUPPORT_HOSTDRV) | |
| {str_hdrvcheck, cmd_outstr, "supported", 0}, | {str_hdrvcheck, cmd_outstr, "supported", 0}, |
| {str_hdrvopen, cmd_hostdrv, NULL, OPEN_HOSTDRV}, | {str_hdrvopen, cmd_hostdrv, NULL, OPEN_HOSTDRV}, |
| {str_hdrvclose, cmd_hostdrv, NULL, CLOSE_HOSTDRV}, | {str_hdrvclose, cmd_hostdrv, NULL, CLOSE_HOSTDRV}, |