-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Maintenance] [th04/th05] Split segment #1 before the EMS functions
Well, except for GameCore(), which has nothing of interest. Part of P0168, funded by Blue Bolt and rosenrose.
- Loading branch information
Showing
9 changed files
with
66 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,10 @@ | ||
/* ReC98 | ||
* ----- | ||
* 4th part of code segment #1 of TH05's MAIN.EXE | ||
* 4rd part of code segment #1 of TH05's MAIN.EXE | ||
*/ | ||
|
||
#pragma option -zCmain_01_TEXT -zPmain_01 | ||
#pragma option -zCmain_0_TEXT -zPmain_01 | ||
|
||
extern "C" { | ||
#include <stddef.h> | ||
#include "platform.h" | ||
#include "pc98.h" | ||
#include "planar.h" | ||
#include "master.hpp" | ||
#include "th01/math/area.hpp" | ||
#include "th01/math/subpixel.hpp" | ||
#include "th03/formats/cdg.h" | ||
#include "th04/math/motion.hpp" | ||
#include "th05/main/playfld.hpp" | ||
#include "th04/main/null.hpp" | ||
#include "th04/main/score.hpp" | ||
#include "th04/main/rank.hpp" | ||
#include "th04/main/item/item.hpp" | ||
#include "th04/main/stage/stage.hpp" | ||
#include "th05/formats/bb.h" | ||
#include "th05/main/boss/boss.hpp" | ||
|
||
#include "th04/main/boss/end.cpp" | ||
#include "th04/main/boss/reset.cpp" | ||
#include "th04/formats/bb_stage.c" | ||
#include "th05/main/stage/setup.cpp" | ||
|
||
void pascal score_delta_commit(void) | ||
{ | ||
while(score_delta > 0) { | ||
score_update_and_render(); | ||
} | ||
} | ||
|
||
static int unused_6CAC[3]; | ||
|
||
#include "th04/main/hud/popup.cpp" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* ReC98 | ||
* ----- | ||
* 5th part of code segment #1 of TH05's MAIN.EXE | ||
*/ | ||
|
||
#pragma option -zCmain_01_TEXT -zPmain_01 | ||
|
||
extern "C" { | ||
#include <stddef.h> | ||
#include "platform.h" | ||
#include "pc98.h" | ||
#include "planar.h" | ||
#include "master.hpp" | ||
#include "th01/math/area.hpp" | ||
#include "th01/math/subpixel.hpp" | ||
#include "th03/formats/cdg.h" | ||
#include "th04/math/motion.hpp" | ||
#include "th05/main/playfld.hpp" | ||
#include "th04/main/null.hpp" | ||
#include "th04/main/score.hpp" | ||
#include "th04/main/rank.hpp" | ||
#include "th04/main/item/item.hpp" | ||
#include "th04/main/stage/stage.hpp" | ||
#include "th05/formats/bb.h" | ||
#include "th05/main/boss/boss.hpp" | ||
|
||
#include "th04/main/boss/end.cpp" | ||
#include "th04/main/boss/reset.cpp" | ||
#include "th04/formats/bb_stage.c" | ||
#include "th05/main/stage/setup.cpp" | ||
|
||
void pascal score_delta_commit(void) | ||
{ | ||
while(score_delta > 0) { | ||
score_update_and_render(); | ||
} | ||
} | ||
|
||
static int unused_6CAC[3]; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters