Skip to content

Instantly share code, notes, and snippets.

View uyjulian's full-sized avatar

Julian Uy uyjulian

View GitHub Profile
ps2-0100j-20000117.bin.extracted/EECONF
ps2-0100j-20000117.bin.extracted/EELOAD
ps2-0100j-20000117.bin.extracted/EENULL
ps2-0100j-20000117.bin.extracted/FONTM
ps2-0100j-20000117.bin.extracted/FONTS
ps2-0100j-20000117.bin.extracted/IOPBOOT
ps2-0100j-20000117.bin.extracted/IOPBTCON2
ps2-0100j-20000117.bin.extracted/IOPBTCONF
ps2-0100j-20000117.bin.extracted/KERNEL
ps2-0100j-20000117.bin.extracted/KROM
# Install deps:
# python3 -m pip install pycryptodome
# This script decrypts
# pack:psml1/0.1.0/psml1script/system/serverlist.enc
# pack:psml1/0.1.0/psml1script/system/hostname_keypair.enc
from Crypto.Cipher import AES
import sys

DVRP AtaEmu proxied commands info

The task will enter an infinite loop if the following commands are encountered:
Queued 7h: 26h, 36h, C7h, CCh
Packet 8h: A0h, A2h
Special case unhandled 9h: B1h

Special handling for command 20h: will get translated to command C8h
Special handling for command 24h: will get translated to command 25h

-- from DefaultContents_0.5/__xcontents/gmm.db
BEGIN TRANSACTION;
CREATE TABLE GMM_Media (PK INTEGER PRIMARY KEY, path TEXT, parent INTEGER, type TEXT, user INTEGER, file_path TEXT, encryption INTEGER);
INSERT INTO GMM_Media VALUES(1,'/',0,1,0,'',0);
INSERT INTO GMM_Media VALUES(2,'/Shared',1,1,0,'',0);
INSERT INTO GMM_Media VALUES(3,'/Shared/Audio',2,1,0,'',0);
INSERT INTO GMM_Media VALUES(4,'/Shared/Audio/Albums',3,1,0,'',0);
INSERT INTO GMM_Media VALUES(5,'/Shared/Image',2,1,0,'',0);
INSERT INTO GMM_Media VALUES(6,'/Shared/Image/Photos',5,1,0,'',0);
INSERT INTO GMM_Media VALUES(7,'/Shared/Video',2,1,0,'',0);
# SPDX-License-Identifier: MIT
import array
def cast_memoryview(mv, t):
return mv.cast(t)
def dot_product_vector3(a, b):
return a[0] * b[0] + a[1] * b[1] + a[2] * b[2]

In tlib_250.tgz, sce/doc/html/web/html/bug_txt.htm#0010240 Release 00/10/24 EE メモリーコントローラバグについて

ライセンシー各位
                                                                2000/10/24
                                                (株)SCE ソフトウェア開発部
"/dev_hdd0/game/NPIA00001/USRDIR/IMAGE.DAT": ./dev_flash_009/content_unpacked/dev_flash/vsh/module/game_ext_plugin.sprx
"Sony PS2 Memory Card Format ": ./dev_flash_006/content_unpacked/dev_flash/vsh/module/vmclib.sprx
"Sony Computer Entertainment Inc.": ./dev_flash_010/content_unpacked/dev_flash/vsh/module/libps2hdd.sprx
"ROMDIR": ./dev_flash_016/content_unpacked/dev_flash/ps1emu/ps1_rom.bin, ./dev_flash_017/content_unpacked/dev_flash/ps2emu/ps2_netemu.self, ./dev_flash_017/content_unpacked/dev_flash/ps2emu/ps2_emu.self, ./dev_flash_017/content_unpacked/dev_flash/ps2emu/ps2_gxemu.self
#!/bin/bash
# rpm based distro common
sudo dnf install dnf-plugins-core
sudo dnf install dnf-utils
sudo dnf group install devleopment-tools
sudo dnf install gcc-c++
sudo dnf install freerdp
sudo dnf builddep freerdp
sudo dnf install ffmpeg
sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm

Wobbles

This information provided by krHACKen

DISC LABEL LOCATION (MODE1 2048) LBA BITSET DECSET CONTENTS
Utility Disc Version 1.00 (NTSC J) [PBPX-95201] 14750000 to 147F2BB0 167584 0x07 0x72 DVD Player Ver 1.00J + Kernel Patch
Utility Disc Version 1.01 (NTSC J) [PBPX-95202] 14750000 to 147FD630 167584 0x07 0x72 DVD Player Ver 1.01J + Kernel Patch
Utility Disc Version 1.01 (NTSC J) [PBPX-95203] 14750000 to 147FD630 167584 0x07 0x72 DVD Player Ver 1.01J + Kernel Patch
DVD Pla
# SPDX-License-Identifier: MIT
import sys
import io
def read_items(in_bytes=None, in_items=None, in_dic=None):
total_offset = 0
for x in in_items:
item_name = x[0]
item_size = x[1]