2015-03-14 22:25:50 +00:00
|
|
|
/* ReC98
|
|
|
|
* -----
|
|
|
|
* 2nd part of code segment #2 of TH02's OP.EXE
|
|
|
|
*/
|
|
|
|
|
2020-11-03 15:25:41 +00:00
|
|
|
#pragma codeseg SHARED
|
2020-10-01 14:34:46 +00:00
|
|
|
#pragma option -3
|
|
|
|
|
2021-01-23 13:27:55 +00:00
|
|
|
extern "C" {
|
2021-01-26 15:33:06 +00:00
|
|
|
#include <dos.h>
|
2020-02-18 18:46:34 +00:00
|
|
|
#include "libs/kaja/kaja.h"
|
2015-03-14 22:25:50 +00:00
|
|
|
#include "th02/th02.h"
|
2021-01-26 15:33:06 +00:00
|
|
|
#include "master.hpp"
|
2019-11-23 20:28:21 +00:00
|
|
|
#include "th02/mem.h"
|
2021-01-04 15:07:07 +00:00
|
|
|
#include "th02/core/initexit.h"
|
2020-02-18 18:46:34 +00:00
|
|
|
#include "th02/snd/snd.h"
|
2021-01-28 19:26:21 +00:00
|
|
|
#include "th02/formats/pf.hpp"
|
2020-09-05 21:55:18 +00:00
|
|
|
#include "th02/hardware/frmdelay.h"
|
2021-01-23 13:27:55 +00:00
|
|
|
#include "th02/hardware/input.hpp"
|
2015-03-14 22:25:50 +00:00
|
|
|
|
|
|
|
const char pf_fn[] = PF_FN;
|
|
|
|
#include "th02/snd/data.c"
|
|
|
|
#include "th02/snd/se_data.c"
|
|
|
|
|
|
|
|
#include "th02/hardware/input.c"
|
2021-01-28 19:26:21 +00:00
|
|
|
#include "th02/core/initop.cpp"
|
2015-03-14 22:25:50 +00:00
|
|
|
#include "th02/exit.c"
|
|
|
|
|
|
|
|
#pragma codestring "\x00"
|
|
|
|
|
|
|
|
#include "th02/snd/mmd_res.c"
|
|
|
|
#include "th02/snd/detmode.c"
|
|
|
|
#include "th02/snd/pmd_res.c"
|
2021-01-23 13:27:55 +00:00
|
|
|
}
|