• ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:ロシア語の翻訳(パソコン関連))

ロシア語の翻訳に関する困りごと

このQ&Aのポイント
  • ロシア語の翻訳に困っています。英語ならまだしも、ロシア語はさっぱり分かりません。PSPのプログラム開発に必要な情報が他になく、早急に手助けして欲しいです。
  • ロシア語の翻訳でお願いします。PSPのプログラム開発に必要な情報を探しています。
  • ロシア語の翻訳が必要です。PSPのプログラム開発に関する情報がほかに見つからず、早めのサポートをお願いします。

質問者が選んだベストアンサー

  • ベストアンサー
  • x3al
  • ベストアンサー率25% (1/4)
回答No.1

英語に翻訳なんとか出来るかもしれない、日本語はさっぱり. If you want to help to russian JigKick project: 1) Get a PRXDecryptor's source code. 2) Change identification in header of main object's file from ~PSP to shown (describedかも, Jigって何のプログラムが分からない) in Jig 3) Insert strings in hex keys Source: /* JigKick enc */ u8 key_2D454353[16] ={ 0x20, 0x4D, 0x53, 0x50, 0x53, 0x4E, 0x59, 0x30, 0x00, 0x78, 0x88, 0x84, 0xC6, 0xAA, 0x00, 0x00, }; 4) Insert information in TAG_INFO2 array: Code: /* JigKick enc */ { 0x2D454353, key_2D454353, 0x4F}, 5) Scrambler code is shown in bold. It specifies output file size. Should be in 0x40 - 0x6F range. If it fails, try same with IPL sample (get at project's SVN). Good luck. The method with soldering/programmator is no good. I think that decrypting files and encryp[ting with new MSID should works too. But software MSID change is better. If MSID_Dampler works and it can read ID and SN from service area of the card, the reverse (writing in this area) should be possible too. So I offer to discuss about MSID_Writer. Here is dumper source: <link> There is header ms_drv.h, which contains all specifications of MS PRO DUO. And last red line got my attention: //PROTOTYPES: void pspMsBootStart(); int pspMsInit(void); int pspMsReadSector(int sector, void *addr); int pspMsReadAttrB(int attr, void *addr); int pspMsWriteSector(int sector, void *addr); Also, this line in test.c: int fd = sceIoOpen("ms0:/attr0.bin", PSP_O_WRONLY | PSP_O_CREAT, 0777); sceIoWrite(fd, buffer, 3*512); So, you can write in file ms0:/attr0.bin from 3*512 (3 sectors * 512 bytes) buffer. How to write these 3 sectors from ms0:/attr0.bin to stick? Maybe: int fd = sceIoOpen("ms0:/attr0.bin", PSP_O_RDONLY, 0777); sceIoWrite(/*heh, there should be a destination address. what address?*/, fd, 3*512);

GreenPeaceQ
質問者

お礼

回答ありがとうございました。 参考にさせてもらいます。

関連するQ&A