summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIru Cai <mytbk920423@gmail.com>2018-08-25 11:35:20 +0800
committerIru Cai <mytbk920423@gmail.com>2018-08-25 11:35:20 +0800
commitf7722ded1ddb3aee0a2360862d9905694a0124f0 (patch)
tree7d59465c780c37f2e0cabbd726576b10efcce257
parent23e5ff769fc3c6a439b77a1e2b3e7942cea7526f (diff)
downloadrich4-f7722ded1ddb3aee0a2360862d9905694a0124f0.tar.xz
mkf_00455040: update comments and code
-rw-r--r--csrc/mkf_00455040.c27
1 files changed, 20 insertions, 7 deletions
diff --git a/csrc/mkf_00455040.c b/csrc/mkf_00455040.c
index a8cb6d4..f807597 100644
--- a/csrc/mkf_00455040.c
+++ b/csrc/mkf_00455040.c
@@ -1,3 +1,6 @@
+#include <stdint.h>
+#include <string.h>
+
/* code used by read_mkf function */
const uint8_t table_00483430[256] = {
@@ -546,17 +549,24 @@ L1:
ecx = old_ecx + eax;
if (dx == 0)
return;
- ebp = ecx;
+ ebp = ecx; /* backup ecx */
ebx -= 0xfd;
- /* push esi */
+ old_esi = esi; /* push esi */
esi = edi - 1 - edx;
ecx -= ebx;
- memcpy(edi, esi, ecx);
- /* pop esi */
+ memcpy(edi, esi, ecx); /* using rep movsb */
+ edi += ecx; /* by movsb */
+ esi = old_esi; /* pop esi */
+ ecx = ebp; /* restore ecx */
goto L1;
}
/* unknown ABI */
+/*
+argument: esi, ecx
+changes ebx, ecx
+doesn't change edi
+*/
int16_t fcn_004551bb()
{
ebx = 0x500;
@@ -567,7 +577,7 @@ L1:
if (bx >= 0x502)
goto L2;
- bool cf = bittest(*(int32_t*)esi, ecx); /* bt dword [esi], ecx */
+ bool cf = bittest(esi, ecx); /* bt dword [esi], ecx */
ecx++;
if (!cf)
goto L1;
@@ -582,6 +592,7 @@ L2:
}
/* unknown ABI */
+/* argument: ebx, changes eax, ebx, ecx, edi */
void fcn_00455109()
{
if (*(int16_t*)0x484cbc == 0x8000) {
@@ -593,6 +604,7 @@ void fcn_00455109()
}
/* unknown ABI */
+/* argument: ebx, changes eax,edi,ecx,ebx */
void fcn_0045511b()
{
bx = *(int16_t*)(ebx + 0x4856c4);
@@ -612,7 +624,7 @@ L1:
*(int16_t*)(ebx + 0x4847bc) = ax;
ax = *(int16_t*)(ebx + 0x484cc0);
cx = *(int16_t*)(edi + 0x484cc0);
- *(int16_t*)(ecx + 0x4851c2) = bx;
+ *(int16_t*)(ecx + 0x4851c2) = bx; /* note that ecx can be big */
if (cx < 0x502)
*(int16_t*)(ecx + 0x4851c4) = bx;
swap(ax, cx);
@@ -630,6 +642,7 @@ L2:
}
/* unknown ABI */
+/* no argument, changes ebx, ecx, edx, ebp */
void fcn_004550cc()
{
edx = 0x141;
@@ -637,7 +650,7 @@ void fcn_004550cc()
ebp = 0;
do {
cx = *(int16_t*)(ebp + 0x4856c4); /* 0x4856c4 + 0x141 * 2 = 0x485946 */
- if (*(int16_t*)(ecx + 0x4847bc) != 0) {
+ if (*(int16_t*)(ecx + 0x4847bc) & 1) {
ebx = ebp;
fcn_0045511b();
}