mirror of https://github.com/nmlgc/ReC98.git
52 lines
1.2 KiB
C
52 lines
1.2 KiB
C
|
int main(int argc, const char **argv)
|
|||
|
{
|
|||
|
seg_t sgm;
|
|||
|
const char *res_id = RES_ID;
|
|||
|
int i;
|
|||
|
char far *resident_bytes;
|
|||
|
|
|||
|
sgm = resdata_exist(res_id, RES_ID_STRLEN, RES_PARASIZE);
|
|||
|
dos_puts2("\n\n" LOGO "\n");
|
|||
|
graph_clear();
|
|||
|
#ifdef RES_INIT_TOP
|
|||
|
RES_INIT_TOP;
|
|||
|
#endif
|
|||
|
if(argc == 2) {
|
|||
|
#define arg1_is(capital, small) \
|
|||
|
(argv[1][0] == '-' || argv[1][0] == '/') \
|
|||
|
&& (argv[1][1] == (capital) || argv[1][1] == (small))
|
|||
|
if(arg1_is('R', 'r')) {
|
|||
|
if(!sgm) {
|
|||
|
dos_puts2("<EFBFBD>킽<EFBFBD><EFBFBD><EFBFBD>A<EFBFBD>܂<EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><EFBFBD><EFBFBD><EFBFBD>悧\n\n");
|
|||
|
return 1;
|
|||
|
}
|
|||
|
dos_free(sgm);
|
|||
|
dos_puts2("<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȃ<EFBFBD><EFBFBD>A<EFBFBD>܂<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>炢<EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n\n");
|
|||
|
return 0;
|
|||
|
} else if(arg1_is('D', 'd')) {
|
|||
|
debug = 1;
|
|||
|
} else {
|
|||
|
dos_puts2("<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȃI<EFBFBD>v<EFBFBD>V<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>t<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ă<EFBFBD><EFBFBD>A<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ł<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n\n");
|
|||
|
sgm = sgm; /* optimization barrier #1 */
|
|||
|
return 1;
|
|||
|
}
|
|||
|
}
|
|||
|
if(sgm) {
|
|||
|
dos_puts2("<EFBFBD>킽<EFBFBD><EFBFBD><EFBFBD>A<EFBFBD><EFBFBD><EFBFBD>łɂ<EFBFBD><EFBFBD>܂<EFBFBD><EFBFBD>悧\n\n");
|
|||
|
argv = argv; /* optimization barrier #2 */
|
|||
|
return 1;
|
|||
|
}
|
|||
|
sgm = resdata_create(res_id, RES_ID_STRLEN, RES_PARASIZE);
|
|||
|
if(!sgm) {
|
|||
|
dos_puts2("<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD><EFBFBD><EFBFBD><EFBFBD>A<EFBFBD>킽<EFBFBD><EFBFBD><EFBFBD>̋<EFBFBD><EFBFBD>ꏊ<EFBFBD><EFBFBD><EFBFBD>Ȃ<EFBFBD><EFBFBD>́I\n\n");
|
|||
|
return 1;
|
|||
|
}
|
|||
|
resident_bytes = MK_FP(sgm, 0);
|
|||
|
dos_puts2("<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ł́A<EFBFBD><EFBFBD><EFBFBD>낵<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>肢<EFBFBD><EFBFBD><EFBFBD>܂<EFBFBD>\n\n");
|
|||
|
for(i = (RES_ID_STRLEN + 1); i < sizeof(resident_t); i++) {
|
|||
|
resident_bytes[i] = 0;
|
|||
|
}
|
|||
|
cfg_init(sgm);
|
|||
|
return 0;
|
|||
|
}
|