To see your stuff show here, enable Compatibility Server Reports in PPSSPP.
Click on a version, game, or report message to show similar entries. Hover over version to see platform info, and hover over a game title to see region and version info.
Game title |
Version |
Latest Report |
Message |
クロヒョウ2 龍が如く 阿修羅編 |
v1.15 |
2023-05-02 |
Branch in Jump delay slot at 09ffe038 in block starting at 09ffe004 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.15 |
2023-05-02 |
Jump to invalid address: 0ffb3000 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.15 |
2023-05-02 |
Branch in Jump delay slot at 09ffe034 in block starting at 09ffe004 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.15 |
2023-05-02 |
Jump to invalid address: 0bfab800 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.15 |
2023-05-02 |
Branch in Jump delay slot at 09ffe030 in block starting at 09ffe004 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.15 |
2023-05-02 |
Jump to invalid address: 07fae800 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.15 |
2023-05-02 |
Branch in branch delay slot at 09ffe010 with different target |
クロヒョウ2 龍が如く 阿修羅編 |
v1.15.3 |
2023-05-22 |
A game install request is already running, not starting a new one |
クロヒョウ2 龍が如く 阿修羅編 |
v1.14.4 |
2023-04-16 |
sceDmacMemcpy(dest=04156400, src=09accce0, size=1728): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.14.4 |
2023-04-16 |
sceDmacMemcpy(dest=04176400, src=09bc6960, size=1568): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.14.4 |
2023-04-15 |
No DL ID available to enqueue |
クロヒョウ2 龍が如く 阿修羅編 |
v1.14.4 |
2023-04-15 |
sceDmacMemcpy(dest=04136400, src=09a17d60, size=1792): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.14.4 |
2023-04-07 |
ReadFromHardware: Invalid address 00000000 near PC 08958044 LR 08957a8c |
クロヒョウ2 龍が如く 阿修羅編 |
v1.14.4 |
2023-04-07 |
ReadFromHardware: Invalid address 0000000b near PC 089cef34 LR 08952854 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.14.4 |
2023-04-07 |
ReadFromHardware: Invalid address 3f80000b near PC 089cef34 LR 08952854 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2023-04-06 |
sceDmacMemcpy(dest=086e0900, src=08f80c80, size=131840): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.10.3 |
2023-04-03 |
sceDmacMemcpy(dest=04136400, src=09a76820, size=1760): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.14.4 |
2023-03-30 |
sceDmacMemcpy(dest=0871f000, src=08f80c80, size=13504): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2023-03-18 |
sceDmacMemcpy(dest=04136400, src=09956de0, size=1728): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.14 |
2023-04-29 |
Error in shader compilation: info: ERROR: 0:33: 'packUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 0:34: 'packUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 0:37: 'unpackUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 3 compilation errors. No code generated.
003c0000:00000002 Tex WriteMask TFuncMod ReplaceLogic
#version 300 es
// Driver: Adreno (TM) 308 - GLSL 300
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 003c0000:00000002 Tex WriteMask TFuncMod ReplaceLogic
precision highp int;
uniform sampler2D tex;
uniform sampler2D fbotex;
uniform uint u_colorWriteMask;
in lowp vec4 v_color0;
in mediump float v_fogdepth;
in mediump vec3 v_texcoord;
out vec4 fragColor0;
uint packUnorm4x8(vec4 v) {
highp vec4 f = clamp(v, 0.0, 1.0);
uvec4 u = uvec4(255.0 * f);
return u.x | (u.y << 8) | (u.z << 16) | (u.w << 24);
}
vec4 unpackUnorm4x8(highp uint x) {
highp uvec4 u = uvec4(x & 0xFFU, (x >> 8) & 0xFFU, (x >> 16) & 0xFFU, (x >> 24) & 0xFFU);
highp vec4 f = vec4(u);
return f * (1.0 / 255.0);
}
void main() {
lowp vec4 destColor = texelFetch(fbotex, ivec2(gl_FragCoord.x, gl_FragCoord.y), 0);
vec4 t = texture(tex, v_texcoord.xy);
vec4 p = v_color0;
vec4 v = vec4(t.rgb * p.rgb, p.a);
fragColor0 = v;
highp uint v32 = packUnorm4x8(fragColor0);
highp uint d32 = packUnorm4x8(destColor);
v32 = v32 | (d32 & 0x00FFFFFFu);
v32 = (v32 & u_colorWriteMask & 0x00FFFFFFu) | (d32 & (~u_colorWriteMask | 0xFF000000u));
fragColor0 = unpackUnorm4x8(v32);
}
|
クロヒョウ2 龍が如く 阿修羅編 |
v1.14 |
2023-04-29 |
Error in shader compilation: info: ERROR: 0:35: 'packUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 0:36: 'packUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 0:39: 'unpackUnorm4x8' : can't redefine/overload built-in functions!
ERROR: 3 compilation errors. No code generated.
00540000:000003a2 Tex TexAlpha WriteMask TClampST TFuncMod ReplaceLogic
#version 300 es
// Driver: Adreno (TM) 308 - GLSL 300
#define DISCARD discard
precision lowp float;
precision highp int;
#define splat3(x) vec3(x)
#define mul(x, y) ((x) * (y))
// 00540000:000003a2 Tex TexAlpha WriteMask TClampST TFuncMod ReplaceLogic
precision highp int;
uniform sampler2D tex;
uniform sampler2D fbotex;
uniform vec4 u_texclamp;
uniform uint u_colorWriteMask;
in lowp vec4 v_color0;
in mediump float v_fogdepth;
in mediump vec3 v_texcoord;
out vec4 fragColor0;
uint packUnorm4x8(vec4 v) {
highp vec4 f = clamp(v, 0.0, 1.0);
uvec4 u = uvec4(255.0 * f);
return u.x | (u.y << 8) | (u.z << 16) | (u.w << 24);
}
vec4 unpackUnorm4x8(highp uint x) {
highp uvec4 u = uvec4(x & 0xFFU, (x >> 8) & 0xFFU, (x >> 16) & 0xFFU, (x >> 24) & 0xFFU);
highp vec4 f = vec4(u);
return f * (1.0 / 255.0);
}
void main() {
lowp vec4 destColor = texelFetch(fbotex, ivec2(gl_FragCoord.x, gl_FragCoord.y), 0);
vec2 fixedcoord = vec2(clamp(v_texcoord.x, u_texclamp.z, u_texclamp.x - u_texclamp.z), clamp(v_texcoord.y, u_texclamp.w, u_texclamp.y - u_texclamp.w));
vec4 t = texture(tex, fixedcoord.xy);
vec4 p = v_color0;
vec4 v = p * t;
fragColor0 = v;
highp uint v32 = packUnorm4x8(fragColor0);
highp uint d32 = packUnorm4x8(destColor);
v32 = (~d32 & 0x00FFFFFFu) | (v32 & 0xFF000000u);
v32 = (v32 & u_colorWriteMask & 0x00FFFFFFu) | (d32 & (~u_colorWriteMask | 0xFF000000u));
fragColor0 = unpackUnorm4x8(v32);
}
|
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2023-03-16 |
sceDmacMemcpy(dest=04156400, src=09ada4e0, size=1624): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2023-03-16 |
ReadFromHardware: Invalid address 10090000 near PC 08958044 LR 08957a8c |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2023-03-16 |
ReadFromHardware: Invalid address 0000000b near PC 0894838c LR 08952854 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2023-03-16 |
sceDmacMemcpy(dest=04156400, src=09b0d3e0, size=1008): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2023-03-15 |
ReadFromHardware: Invalid address 00308108 near PC 08957aa0 LR 08957aa8 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2023-03-15 |
sceDmacMemcpy(dest=04136400, src=09a8a120, size=1568): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2023-03-14 |
sceDmacMemcpy(dest=04156400, src=09b1cbe0, size=1792): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2023-03-12 |
sceDmacMemcpy(dest=085c1200, src=08f80c80, size=131840): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.14.4 |
2023-03-11 |
00000000=sceUtilityScreenshotInitStart(09072210) |
クロヒョウ2 龍が如く 阿修羅編 |
v1.14.4 |
2023-03-06 |
sceDmacMemcpy(dest=08689000, src=08f80c80, size=111424): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.14 |
2023-02-28 |
sceDmacMemcpy(dest=04136400, src=09ec7980, size=224): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.5.4 |
2023-02-23 |
sceDmacMemcpy(dest=04156400, src=09a339f0, size=4824): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.14.4 |
2023-02-23 |
sceDmacMemcpy(dest=04156400, src=09a27570, size=4824): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.5.4 |
2023-02-23 |
sceDmacMemcpy(dest=04176400, src=09ab42e0, size=4824): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.14 |
2023-02-08 |
ReadFromHardware: Invalid address 01d8000b near PC 089cef34 LR 08952854 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.14.4 |
2023-02-07 |
sceDmacMemcpy(dest=08689000, src=08f80c80, size=131840): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.14 |
2023-02-07 |
ReadFromHardware: Invalid address 0600000c near PC 0894838c LR 08952854 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.14 |
2023-02-07 |
Branch in JumpReg delay slot at 08ca012c in block starting at 08ca0018 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2023-01-30 |
sceGeBreak(mode=0, unknown=08a6ac20): unknown ptr (valid) |
クロヒョウ2 龍が如く 阿修羅編 |
v1.11.3 |
2023-01-11 |
sceDmacMemcpy(dest=04136400, src=09a86420, size=2360): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2022-12-14 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=2, text=2 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2022-12-14 |
sceKernelLoadModule: unsupported options size=00000014, flags=7f800001, pos=0, access=1, data=1, text=1 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-355-g0749f1465 |
2022-11-24 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, CLUT16):
[DEPTH seq:4819 C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false] [DEPTH seq:4827 C:04156900/512 Z:04088000/512 X:0 Y:0 reint: false] [DEPTH seq:4833 C:04000000/512 Z:04088000/512 X:0 Y:0 reint: false] |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-11-10 |
MIPSCompileOp: Invalid instruction 00005a1f |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-11-06 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 14 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-11-06 |
sceKernelCreateSema(RealSignal) unsupported options parameter, size = 612 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-11-06 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145232488 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-11-06 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 145224280 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-11-06 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 144296776 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-10-31 |
sceDmacMemcpy(dest=04116400, src=097ecdc0, size=2808): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-11-04 |
sceKernelCreateSema(RealMutex) unsupported options parameter, size = 143964328 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-11-04 |
sceKernelLoadModule: unsupported options size=00000014, flags=ffffffff, pos=0, access=1, data=2, text=2 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-10-23 |
sceDmacMemcpy(dest=04136400, src=099bd950, size=4824): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-10-21 |
sceDmacMemcpy(dest=04156400, src=09a29380, size=4824): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.11.3 |
2022-09-30 |
sceDmacMemcpy(dest=04116400, src=095433d0, size=2808): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-12-07 |
GetFramebufferCandidates(DEPTH): Multiple (3) candidate framebuffers. First will be chosen. texaddr: 04288000 offset: 0 (512x512 stride 512, CLUT16):
[C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false] [C:04000000/512 Z:04088000/512 X:0 Y:0 reint: false] [C:04156900/512 Z:04088000/512 X:0 Y:0 reint: false] |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12 |
2022-09-17 |
sceDmacMemcpy(dest=04136400, src=09a42750, size=1568): overlapping read |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-12-18 |
GetFramebufferCandidates(DEPTH): Multiple (2) candidate framebuffers. First will be chosen. texaddr: 04288000 offset: 0 (512x512 stride 512, CLUT16):
[C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false] [C:04156900/512 Z:04088000/512 X:0 Y:0 reint: false] |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2022-09-15 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5128, pos=0, access=1, data=2, text=2 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2022-09-15 |
sceKernelLoadModuleByID: unsupported options size=00000014, flags=089a5128, pos=0, access=1, data=1, text=1 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2023-03-19 |
GetFramebufferCandidates(DEPTH): Multiple (3) candidate framebuffers. First will be chosen. texaddr: 04288000 offset: 0 (512x512 stride 512, CLUT16):
[C:04000000/512 Z:04088000/512 X:0 Y:0 reint: false] [C:04156900/512 Z:04088000/512 X:0 Y:0 reint: false] [C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false] |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-475-g853a2df06 |
2022-09-04 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, 565):
[DEPTH seq:168 C:04044000/512(5551) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:169 C:04088000/512(565) Z:00000000/0 X:0 Y:0 reint: false]
[DEPTH seq:0 C:04156900/512(565) Z:04088000/512 X:0 Y:0 reint: false]
|
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-471-g67c911d13 |
2022-09-04 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, 565):
[DEPTH seq:136 C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false] [COLOR seq:137 C:04088000/512 Z:00000000/0 X:0 Y:0 reint: false] [DEPTH seq:0 C:04156900/512 Z:04088000/512 X:0 Y:0 reint: false] |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-471-g67c911d13 |
2022-09-04 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, 565):
[DEPTH seq:164 C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false] [COLOR seq:165 C:04088000/512 Z:00000000/0 X:0 Y:0 reint: false] [DEPTH seq:0 C:04156900/512 Z:04088000/512 X:0 Y:0 reint: false] |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-470-g20bd1c26d |
2022-09-04 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, 565):
[DEPTH seq:166 C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false] [COLOR seq:167 C:04088000/512 Z:00000000/0 X:0 Y:0 reint: false] [DEPTH seq:0 C:04156900/512 Z:04088000/512 X:0 Y:0 reint: false] |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-468-g586da0882 |
2022-09-04 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, 565):
[DEPTH seq:274 C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false] [COLOR seq:275 C:04088000/512 Z:00000000/0 X:0 Y:0 reint: false] [DEPTH seq:0 C:04156900/512 Z:04088000/512 X:0 Y:0 reint: false] |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-458-g5d50d0222 |
2022-09-04 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, 565):
[DEPTH seq:220 C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false] [COLOR seq:221 C:04088000/512 Z:00000000/0 X:0 Y:0 reint: false] [DEPTH seq:0 C:04156900/512 Z:04088000/512 X:0 Y:0 reint: false] |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-453-gfc81b76b9 |
2022-09-04 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, 565):
[DEPTH seq:162 C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false] [COLOR seq:163 C:04088000/512 Z:00000000/0 X:0 Y:0 reint: false] [DEPTH seq:0 C:04156900/512 Z:04088000/512 X:0 Y:0 reint: false] |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-447-g192133878 |
2022-09-04 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, 565):
[DEPTH seq:272 C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false] [COLOR seq:273 C:04088000/512 Z:00000000/0 X:0 Y:0 reint: false] [DEPTH seq:0 C:04156900/512 Z:04088000/512 X:0 Y:0 reint: false] |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-441-g68134b638 |
2022-09-04 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, 565):
[DEPTH seq:298 C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false] [COLOR seq:299 C:04088000/512 Z:00000000/0 X:0 Y:0 reint: false] [DEPTH seq:0 C:04156900/512 Z:04088000/512 X:0 Y:0 reint: false] |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-438-g15f51c306 |
2022-09-04 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, 565):
[DEPTH seq:180 C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false] [COLOR seq:181 C:04088000/512 Z:00000000/0 X:0 Y:0 reint: false] [DEPTH seq:0 C:04156900/512 Z:04088000/512 X:0 Y:0 reint: false] |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-633-g437d6d30a |
2022-08-31 |
Ignoring possible texturing from framebuffer at 04156900 +-128x-826 / 512x272 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2022-08-31 |
Jump to invalid address: 02ecf960 PC 08ca042c LR 08ca0018 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2022-08-31 |
Jump to invalid address: 04dc3880 PC 08ca0428 LR 08ca0018 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2022-08-31 |
Jump to invalid address: 04dc3640 PC 08ca0424 LR 08ca0018 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2022-08-31 |
Jump to invalid address: 04eb35c0 PC 08ca0418 LR 08ca0018 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2022-08-31 |
Jump to invalid address: 04dc3580 PC 08ca0304 LR 08ca0018 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-11-10 |
Jump to invalid address: 02e8a0e0 PC 08ca02a0 LR 08ca0018 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-11-10 |
Jump to invalid address: 02e83a40 PC 08ca027c LR 08ca0018 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-11-10 |
Jump to invalid address: 02e820c0 PC 08ca025c LR 08ca0018 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-11-10 |
Jump to invalid address: 03281350 PC 08ca0250 LR 08ca0018 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-11-10 |
Jump to invalid address: 032812b0 PC 08ca024c LR 08ca0018 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-11-10 |
Jump to invalid address: 03280a80 PC 08ca0248 LR 08ca0018 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-11-10 |
Jump to invalid address: 03280970 PC 08ca0244 LR 08ca0018 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.2 |
2022-11-10 |
Jump to invalid address: 032809f0 PC 08ca0240 LR 08ca0018 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.14 |
2023-02-07 |
Jump to invalid address: 07ebf1c0 PC 08ca0018 LR 08ca0018 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.12.3 |
2022-08-31 |
ReadFromHardware: Invalid address 1600000a near PC 0894838c LR 08952854 |
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-623-gdaa62beb3 |
2022-08-31 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, 565):
[DEPTH seq:468 C:04044000/512(5551) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:469 C:04088000/512(565) Z:00000000/0 X:0 Y:0 reint: false]
[DEPTH seq:0 C:04156900/512(565) Z:04088000/512 X:0 Y:0 reint: false]
|
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-622-gfd863beb9 |
2022-08-30 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, 565):
[DEPTH seq:160 C:04044000/512(5551) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:161 C:04088000/512(565) Z:00000000/0 X:0 Y:0 reint: false]
[DEPTH seq:0 C:04156900/512(565) Z:04088000/512 X:0 Y:0 reint: false]
|
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-613-g30dc831fc |
2022-08-30 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, 565):
[DEPTH seq:66 C:04044000/512(5551) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:67 C:04088000/512(565) Z:00000000/0 X:0 Y:0 reint: false]
[DEPTH seq:0 C:04156900/512(565) Z:04088000/512 X:0 Y:0 reint: false]
|
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-608-gdee6ba0c1 |
2022-08-29 |
GetFramebufferCandidates: Multiple (2) candidate framebuffers. texaddr: 04110000 offset: 0 (512x512 stride 512, CLUT16):
[DEPTH seq:833 C:04088000/512(8888) Z:04110000/512 X:0 Y:0 reint: false]
[COLOR seq:834 C:04110000/512(565) Z:00000000/0 X:0 Y:0 reint: false]
|
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-605-g2b1b9e5eb |
2022-08-29 |
GetFramebufferCandidates: Multiple (3) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, 565):
[DEPTH seq:224 C:04044000/512(5551) Z:04088000/512 X:0 Y:0 reint: false]
[COLOR seq:225 C:04088000/512(565) Z:00000000/0 X:0 Y:0 reint: false]
[DEPTH seq:0 C:04156900/512(565) Z:04088000/512 X:0 Y:0 reint: false]
|
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-605-g2b1b9e5eb |
2022-08-29 |
GetFramebufferCandidates: Multiple (2) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, CLUT16):
[DEPTH seq:686 C:04000000/512(5551) Z:04088000/512 X:0 Y:0 reint: false]
[DEPTH seq:684 C:04044000/512(5551) Z:04088000/512 X:0 Y:0 reint: false]
|
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-601-g34ed960a7 |
2022-08-29 |
GetFramebufferCandidates: Multiple (2) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, CLUT16):
[DEPTH seq:1042 C:04000000/512(5551) Z:04088000/512 X:0 Y:0 reint: false]
[DEPTH seq:1040 C:04044000/512(5551) Z:04088000/512 X:0 Y:0 reint: false]
|
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-601-g34ed960a7 |
2022-08-29 |
GetFramebufferCandidates: Multiple (2) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, CLUT16):
[DEPTH seq:738 C:04000000/512(5551) Z:04088000/512 X:0 Y:0 reint: false]
[DEPTH seq:740 C:04044000/512(5551) Z:04088000/512 X:0 Y:0 reint: false]
|
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-590-g5247ffa0a |
2022-08-28 |
GetFramebufferCandidates: Multiple (2) candidate framebuffers. texaddr: 04110000 offset: 0 (512x512 stride 512, CLUT16):
[DEPTH seq:929 C:04088000/512(8888) Z:04110000/512 X:0 Y:0 reint: false]
[COLOR seq:930 C:04110000/512(565) Z:00000000/0 X:0 Y:0 reint: false]
|
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-583-g1653dcdc1 |
2022-08-28 |
GetFramebufferCandidates: Multiple (2) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, CLUT16):
[DEPTH seq:954 C:04000000/512(5551) Z:04088000/512 X:0 Y:0 reint: false]
[DEPTH seq:952 C:04044000/512(5551) Z:04088000/512 X:0 Y:0 reint: false]
|
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-583-g1653dcdc1 |
2022-08-28 |
GetFramebufferCandidates: Multiple (2) candidate framebuffers. texaddr: 04110000 offset: 0 (512x512 stride 512, CLUT16):
[DEPTH seq:937 C:04088000/512(8888) Z:04110000/512 X:0 Y:0 reint: false]
[COLOR seq:938 C:04110000/512(565) Z:00000000/0 X:0 Y:0 reint: false]
|
クロヒョウ2 龍が如く 阿修羅編 |
v1.13.1-381-g5046cbd01 |
2022-08-27 |
GetFramebufferCandidates: Multiple (2) candidate framebuffers. texaddr: 04288000 offset: 0 (512x512 stride 512, CLUT16):
[DEPTH seq:558 C:04000000/512 Z:04088000/512 X:0 Y:0 reint: false] [DEPTH seq:560 C:04044000/512 Z:04088000/512 X:0 Y:0 reint: false] |