Strict Standards: Non-static method Soojung::addReferer() should not be called statically in /home/lifthrasiir/sites/sapzil.info/soojung/settings.php on line 79

Warning: Cannot modify header information - headers already sent by (output started at /home/lifthrasiir/sites/sapzil.info/soojung/settings.php:79) in /home/lifthrasiir/sites/sapzil.info/soojung/classes/Counter.class.php on line 63

Strict Standards: Non-static method Entry::getEntry() should not be called statically in /home/lifthrasiir/sites/sapzil.info/soojung/entry.php on line 51

Strict Standards: Non-static method Soojung::entryIdToFilename() should not be called statically in /home/lifthrasiir/sites/sapzil.info/soojung/classes/Entry.class.php on line 182

Strict Standards: Non-static method Soojung::queryFilenameMatch() should not be called statically in /home/lifthrasiir/sites/sapzil.info/soojung/classes/Soojung.class.php on line 55
TokigunStudio3 | 블로그: pak 파일 포맷 (build 226 기준; 진척도 90%)

내용으로 바로 넘어 가기


TokigunStudio3

228 / 3282   


더 이상 이 블로그는 운영되지 않습니다. 새 블로그로 가 주세요.

pak 파일 포맷 (build 226 기준; 진척도 90%)

2004/10/03 PM 09:56 | 개발/역공학 | 2 comments | 0 trackbacks | AllBlog: vote, to pocket

펜타비젼 측의 요청에 의하여 삭제하였습니다. 죄송합니다.

TrackBack URL: http://sapzil.info/soojung/trackback.php?blogid=66

Comment: mithrandir (2004/10/04 AM 10:32)

잠깐 딴지를 걸자면, big endian의 경우에
0x12345678 가 순서대로

12 34 56 78이고, little endian 의 경우에
78 56 34 12 이지요.

요건
#include <stdio.h>
int main()
{
FILE *fp;
int a=0x12345678;
unsigned char *b = (char *)&a;
printf ("%X %X %X %X\n", b[0], b[1], b[2], b[3]);
}
를 실행해보면 알 수 있어요.

물론 little endian에 대해서 뒤집혔다고 쓴 거겠지만 세상은 little endian이 기준이 아니니까요 =3

Comment: 토끼군 (2004/10/04 AM 11:00)

아 정신이 없었군요... ;; big endian이 아니라 little endian인데... :( 슬쩍 수정했습니다. :)

Copyright (c) 1995-2005, Kang Seonghoon (Tokigun).