爱技术

 找回密码
 注册会员

QQ登录

只需一步,快速开始

微信登录

微信扫一扫,快速登录

搜索
查看: 96|回复: 0
收起左侧

[求助] 刷MP前的最后确定

[复制链接]
发表于 2006-8-12 13:23:43 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?注册会员 微信登录

x
本人在论坛找了所有基础补丁的最新版本

希望高手看看有没有 那些需要改动而我没有改的  或者版本不是最新的  或者版本不稳定的   或者不适合M65使用的~谢谢了


API - v14.0
;* API *
;This Patch contains some useful functions which have not been found in FW
;It is universal and can be installed on every x65-x75 phone without changing
;v14.0
#pragma enable old_equal_ff
;----------------------------------------
; API - OpenReadCloseFile - fix
; v1.1
; (c) Lisugar
; (!) FunctionLibrary(f010, f011, f013, f015, f020)

;因为C6C一直没有找到这个函数影响进度, 因此, 写了这个函数暂时代替
;C6C必须刷这个函数其他机型可以不刷

; R0 = the address of filename
; R1 = a pointer to the address of buffer want to read in
;      the address of buffer will be malloced automaticly
; return R0 -1 when find err else return filesize
; return R1 the pointer of the address of buffer

0xFCFFA0: FEB581B00E1C6B4680221102F0F750F8
0xFCFFB0: 051C431C002B1DD0281C002102226B46
0xFCFFC0: F0F75AF800280FDD041CF0F769F83060
0xFCFFD0: 281C002100226B46F0F74EF8281C3168
0xFCFFE0: 221C6B46F0F738F8061C6946281CF0F7
0xFCFFF0: 3BF8301C01B0FEBD
;----------------------------------------
;OpenWriteCloseFile
;v1.1
;(c) 1nvisible
;Writes Buffer to a File
;R0 - File Name
;R1 - Buffer Pointer
;R2 - Bytes to Write

0FCF000: FFB50D1C161C0849FF2201326B46F1F7
0FCF010: 1FF8291C321C061C6B46F1F721F8301C
0FCF020: 6946F1F721F8FFBD01030000
;----------------------------------------
;ReturnProcedure
;v1.0
;(c) 1nvisible
;Returns from ldr/blx patches by adding 4 to LR

0FCF030: 0040BDE804E08EE21EFF2FE1
;----------------------------------------
;Hex2Int
;v1.0
;(c) empeka
;This function converts numerical string containing hexadecimal value to 32bit integer
;Parameters:
;R0: pointer to string
;R1: address for pointer containing last processed byte from input string (optional)
;Output:
;R0: received value (32bit)
;R1: pointer to last processed character
;Notes:
;Function automatically skips blanks (0x20) and new lines (0x13) in given string, so "123 4" is possible in input
;If function encounters character, which is one of above, nor hexadecimal digit, it breaks execution.

0FCF050: 10B5002302780130141C093C042CF9D9
0FCF060: 202AF7D0302A15D3662A13D8392A09DD
0FCF070: 412A0FDB462A03DD612A0BDB573A02E0
0FCF080: 373A00E0303A1C1C102363439B180278
0FCF090: 0130E7E7002901D001380860181C10BD
;----------------------------------------
; StrAnsi2Uni
; in:  R0 = pointer to ANSI string (0-term),
;      R1 = pointer to Unicode string buffer (1st word - len)

0FCF0A0: FFB5021C00230224D05C002805D000F0
0FCF0B0: 17F8085301330234F6E70B80FFBD
;----------------------------------------
; StrUni2Ansi
; in:  R0 = pointer to Unicode string (1st word - len),
;      R1 = pointer to ANSI string buffer

0FCF0C0: FFB50388821C108800F03AF808700131
0FCF0D0: 0232013B002BF6D10B70FFBD
;----------------------------------------
; CharAnsi2Unicode
; in:  R0 = ANSI char
; out: R0 = Unicode char

0FCF0E0: 02B5A821884228DB15D0401A182803DB
0FCF0F0: 572822DC08381DE002280ED007280ED0
0FCF100: 0A280ED00B280ED010280ED012280ED0
0FCF110: 17280ED011E001200CE004200AE00720
0FCF120: 08E0062006E0562004E0512002E05420
0FCF130: 00E0572004210902401802BD
;----------------------------------------
; CharUnicode2Ansi
; in:  R0 = Unicode char
; out: R0 = ANSI char

0FCF140: 02B504210902884228DB401A102803DB
0FCF150: 4F280ADC083020E001280FD004280FD0
0FCF160: 06280FD007280FD018E051280ED05428
0FCF170: 0ED056280ED057280ED00FE000200CE0
0FCF180: 02200AE00A2008E0072006E0102004E0
0FCF190: 122002E00B2000E01720A83002BD
;----------------------------------------
;DrawText
;v1.1
;(c) 1nvisible
;(r) benj9, KreN
;Draws a text string.
;R0 - wstring
;R1 - x
;R2 - y
;R3 - font
;[SP] - width
;[SP+4] - height
;[SP+8] - alignment
;[SP+12] - text color
;[SP+16] - bg color
;[SP+20] - inversion

0FCF1B0: F0B5FFB0041C1D1C859B009304A8849B
0FCF1C0: F1F7F2F808A804A9899A2B1C0093869B
0FCF1D0: 0193029402ABF1F7EBF808A88799889A
0FCF1E0: F1F7EAF808A8F1F7EFF808A8F1F7F0F8
0FCF1F0: 7FB0F0BD
;----------------------------------------
;OpenReadCloseFile
;v1.1
;(c) KreN
;Reads whole file to RAM. Supports >64k files.
;R0 - File Name (0-term str)
;R1 - RAM for ptr (4 bytes)

0FCF200: FEB582B00D1C041C00F04AF8411C36D0
0FCF210: 061E201C802211026B46F0F719FF0190
0FCF220: 411C2CD0701CF0F73BFF2860051C0024
0FCF230: 84550294029901291AD0802000020030
0FCF240: 86420CD9211C019800226B46F0F714FF
0FCF250: 8022120200322919A418B61A03E02919
0FCF260: 321C0120029001986B46F0F7F5FEE1E7
0FCF270: 01986946F0F7F8FEA01902B0FEBD0020
0FCF280: 2860C043F9E7
;----------------------------------------
;GetFileSize
;v1.1
;(c) KreN
;Returns File Size.
;R0 - File Name (0-term str)

0FCF2A0: FEB58BB06A4601A9F1F7BAF8411C00D0
0FCF2B0: 02980BB0FEBD
;----------------------------------------
;Seconds2iTime
;v1.0
;(c) benj9
;in: R0 - time (seconds)
;out: R0 - iTime

0FCF300: FEB505210902143141430620F1F758F9
0FCF310: FEBD
;----------------------------------------
; CanvasDraw
; R0 - X
; R1 - Y
; R2 - Pic
0FCF320: FFB570BC101CF0F7EFFE40190121401A
0FCF330: 03B4301CF0F7ECFE0319013B2A1C211C
0FCF340: F1F722FA381CF0F7EFFE02B0F8BD
;----------------------------------------
; DrawPicWithCanvas
; R0 - X
; R1 - Y
; R2 - Pic
0FCF350: FFB570BCFFF7E4FF70B407BCF0F7E0FE
0FCF360: F8BD
;----------------------------------------
; DrawColorPicWithCanvas
; R0 - X
; R1 - Y
; R2 - Pic
; R3 - * color (color addr)
; [SP] - * bg color (color addr)
0FCF370: FFB570BCFFF7D4FF069A08BC04B470B4
0FCF380: 07BCF0F7D5FE01B0F0BD

#pragma disable old_equal_ff





Function library(Last update:2006.08.07 20:34)

; M6C v50 lg8 - Patch made by "Smelter" ? avkiev
; http://avkiev.kiev.ua/Siemens/Smelter/Smelter.htm
;********************************************************************************

;Function library v2006.08.06
;Last update by starfriend
;(!) RamMissedEventAddrSpike
;(!) API


+0FC0000
#pragma enable old_equal_ff
;----------------------------------------------------------------------
;Functions
;----------------------------------------------------------------------
000: 004F3847,0xA0A73CE7   ; f000: GetDateTimeOld
008: 004F3847,0xA082AD87   ; f001: GetWeekOld
010: 004F3847,0xA08D1D0D   ; f002: GetProfileOld
018: 004F3847,0xA08D1BDB   ; f003: SetProfileOld
020: 004F3847,0xA159B7B8   ; f004: dwMODdwOld
028: 004F3847,0xA082BE21   ; f005: DecToHex
030: 004F3847,0xA122AE6C   ; f006: GetAkku
038: 004F3847,0xA1216885   ; f007: GetLP
040: 004F3847,0xA122BD00   ; f008: SetIllumination
048: 004F3847,0xA1249194   ; f009: SwitchPhoneOff
;
050: 004F3847,0xA1219DB0   ; f010: fopen
058: 004F3847,0xA1219DF0   ; f011: fread
060: 004F3847,0xA1219ED8   ; f012: fwrite
068: 004F3847,0xA1219D04   ; f013: fclose
070: 004F3847,0xA1219D34   ; f014: fflush
078: 004F3847,0xA1219D64   ; f015: lseek
080: 004F3847,0xA12685C4   ; f016: mkdir
088: 004F3847,0xA0BAFFDF   ; f017: OpenReadCloseFile
090: 004F3847,0xA1268AB8   ; f018: GetFileAttrib
098: 004F3847,0xA12685C4   ; f019: SetFileAttrib
;
0A0: 004F3847,0xA0820F98   ; f020: malloc
0A8: 004F3847,0xA0821000   ; f021: mfree
0B0: 004F3847,0xA159A751   ; f022: sPrintf
0B8: 004F3847,0xA159B9D9   ; f023: strcat
0C0: 004F3847,0xA159B9F9   ; f024: strchr
0C8: 004F3847,0xA159BA1C   ; f025: strcmp
0D0: 004F3847,0xA159BAB9   ; f026: strcopy
0D8: 004F3847,0xA159BB39   ; f027: StrLen
0E0: 004F3847,0xA0A55559   ; f028: wsAppendChar
0E8: 004F3847,0xA0A5550D   ; f029: wsInsertChar
;
0F0: 004F3847,0xA00DDC1D   ; f030: GetPITaddr
0F8: 004F3847,0xA08D9C45   ; f031: DrawMainScreen
100: 004F3847,0xA0976055   ; f032: DrawScreenSaver
108: 004F3847,0xA00DDD51   ; f033: GetImgHeight
110: 004F3847,0xA00DDD61   ; f034: GetImgWidth
118: 004F3847,0xA08C031D   ; f035: DrawImg
120: 004F3847,0xA00A1B39   ; f036: DrawImage2
128: 004F3847,0xA08C02F7   ; f037: DrawCanvas
130: 004F3847,0xA00A1A79   ; f038: DrawImgBW
138: 004F3847,0xA08BFCF9   ; f039: AddIconToIconbar
;
140: 004F3847,0xA122CD68   ; f040: getEELiteMaxID
148: 004F3847,0xA12187D0   ; f041: getEEFullMaxID
150: 004F3847,0xA122CC04   ; f042: GetEELiteBlockAddress
158: 004F3847,0xA122CD0C   ; f043: getEELiteBlockSizeVersion
160: 004F3847,0xA1218414   ; f044: getEEFullBlockSizeVersion
168: 004F3847,0xA122CD9C   ; f045: StartWriteEELiteBlock
170: 004F3847,0xA122CE18   ; f046: FinishWriteEELiteBlock
178: 004F3847,0xA122CD74   ; f047: DeleteEELiteBlock
180: 004F3847,0xA122CDD4   ; f048: WriteEELiteBlock
188: 004F3847,0xA159BC81   ; f049: StrChrRev
;
190: 004F3847,0xA09050D8   ; f050: PlaySound
198: 004F3847,0xA08FB2BC   ; f051: PlaySound2
1A0: 004F3847,0xA08CB6C0   ; f052: PlaySoundLoop
1A8: 004F3847,0xA0B33127   ; f053: AlarmClockRing
1B0: 004F3847,0xA0A5C59D   ; f054: GetATCmdString
1B8: 004F3847,0xA0B3569B   ; f055: OriginalATCGSN
1C0: 004F3847,0xA0A5BF39   ; f056: PostAtCommand
1C8: 004F3847,0xA0A5D657   ; f057: SendATAnswerStr
1D0: 004F3847,0xA0BB3A0D   ; f058: mfree_high
1D8: 004F3847,0xA159B155   ; f059: MemChr
;
1E0: 004F3847,0xA1219E30   ; f060: SetFileSize
1E8: 004F3847,0xA160182D   ; f061: editOrNewTXTModule
1F0: 004F3847,0xA0A5330D   ; f062: LoadProcesses
1F8: 004F3847,0xA00A24B1   ; f063: SelectColor
200: 004F3847,0xA0969529   ; f064: GetVibraStatus
208: 004F3847,0xA0AB61FB   ; f065: GetProvider
210: 004F3847,0xA092F4A5   ; f066: IsScreenSaver
218: 004F3847,0xA00B1A63   ; f067: IsUnlocked
220: 004F3847,0xA0AE3519   ; f068: TempLigntOn
228: 004F3847,0xA09352CC   ; f069: GetWavLen
;
230: 004F3847,0xA0975C21   ; f070: HasNewSMS
238: 004F3847,0xA092E835   ; f071: HasFlashSMS
240: 004F3847,0xA1603687   ; f072: ReadNewSMS
248: 004F3847,0xA0974C87   ; f073: ReadFlashSMS
250: 004F3847,0xA08FD734   ; f074: PlayFile
258: 004F3847,0xA1023D68   ; f075: StartMidlet
260: 004F3847,0xA0AB2539   ; f076: GetMissedCallsCount
268: 004F3847,0xA0827C04   ; f077: CallAfterTimer
270: 004F3847,0xA0098847   ; f078: ShowMsgInR1_3
278: 004F3847,0xA0098857   ; f079: ShowMsgInR1_4
;
280: 004F3847,0xA00988BF   ; f080: ShowMsgInR1_7
288: 004F3847,0xA010C069   ; f081: GetNetAccessMode
290: 004F3847,0xA122C3AC   ; f082: GetIlluminationDataTable
298: 004F3847,0xA159B179   ; f083: memcmp
2A0: 004F3847,0xA082BE5D   ; f084: StrToInt
2A8: 004F3847,0xA096953F   ; f085: SwitchVibraOnOff
;2B0: 004F3847,0x   ; f086: GetCpuLoad
2B8: 004F3847,0xA0827D10   ; f087: IsCallAfterTimerStillRunning
2C0: 004F3847,0xA0836F4C   ; f088: ClearMemory
2C8: 004F3847,0xA159B644   ; f089: MemCopy
;
2D0: 004F3847,0xA0096EEF   ; f090: Keypress_On
2D8: 004F3847,0xA0096FAD   ; f091: Keypress_Off
2E0: 004F3847,0xA096C9E5   ; f092: GetCPUClock
2E8: 004F3847,0xA096CA1F   ; f093: GetCPULoad
2F0: 004F3847,0xA0824650   ; f094: GetMMIMemUsed
2F8: 004F3847,0xA082100C   ; f095: GetNonPermMemAvail
300: 004F3847,0xA09696E5   ; f096: ShowMainMenu
308: 004F3847,0xA09B4863   ; f097: ShowNativeMenu
;310: 004F3847,0x   ; f098:
318: 004F3847,0xA092C14F   ; f099: Screen_Wallpaper_Flush

;
;320: 004F3847,0xA0A08EEC   ; f100: EndUpdateScreen
320: 004F3847,0xA00B3A95   ; f100: EndUpdateScreen
328: 004F3847,0xA0AB3C61   ; f101: EndCall
330: 004F3847,0xA0A66583   ; f102: EndCallBusy
338: 004F3847,0xA08D83A5   ; f103: IsDirectCallActive
340: 004F3847,0xA0928399   ; f104: GetScreenSaverRAM
348: 004F3847,0xA0828E0C   ; f105: LockShed
350: 004F3847,0xA0828E94   ; f106: UnLockShed
358: 004F3847,0xA1219AE8   ; f107: FindFirstFile
360: 004F3847,0xA1219B24   ; f108: FindNextFile
368: 004F3847,0xA1219A70   ; f109: FindClose
;
370: 004F3847,0xA00CD773   ; f110: IsCalling
378: 004F3847,0xA08D8A27   ; f111: RefreshGPRSTraffic
380: 004F3847,0xA08D8A45   ; f112: GetGPRSTrafficAddress
388: 004F3847,0xA00A151F   ; f113: DrawFrame
390: 004F3847,0xA0AAE76B   ; f114: GetCurrentSecondOfCall
398: 004F3847,0xA00CDF8B   ; f115: GetTypeOfCall
3A0: 004F3847,0xA0969C6B   ; f116: GetFunctionPointer
3A8: 004F3847,0xA00A3E45   ; f117: SetWindowMetrics
3B0: 004F3847,0xA00DA815   ; f118: SetWindowText
3B8: 004F3847,0xA00D55CB   ; f119: SetWindowColor
;
3C0: 004F3847,0xA0A74B63   ; f120: GetTimeFormat
3C8: 004F3847,0xA00A2E79   ; f121: PushWindowBuffer
3D0: 004F3847,0xA00D5661   ; f122: ClearWindowBuffer
3D8: 004F3847,0xA08D2349   ; f123: GetProfileFilter
3E0: 004F3847,0xA123409C   ; f124: SetVibration
3E8: 004F3847,0xA00CD18D   ; f125: IsIncognitoCall
3F0: 004F3847,0xA00E75E5   ; f126: rand
;3F8: 004F3847,0x   ; f127:
400: 004F3847,0xA0B33499   ; f128: GetCallsList
;408: 004F3847,0x   ; f129:
;
;410: 004F3847,0x   ; f130:
418: 004F3847,0xA08E6A34   ; f131: GetPathOfFoundFile
420: 004F3847,0xA1219C64   ; f132: GetFileStats
428: 004F3847,0xA08256E9   ; f133: StrCmpNoCase
430: 004F3847,0xA121833C   ; f134: ReadEEPROMData
438: 004F3847,0xA1218480   ; f135: WriteEEPROMData
;440: 004F3847,0x   ; f136:
;448: 004F3847,0x   ; f137:
450: 004F3847,0xA1219A00   ; f138: GetFreeFlexSpace
458: 004F3847,0xA1219FC4   ; f139: GetTotalFlexSpace
;
;460: 004F3847,0x   ; f140:
;468: 004F3847,0x   ; f141:
;470: 004F3847,0x   ; f142:
;478: 004F3847,0x   ; f143:
;480: 004F3847,0x   ; f144:
;488: 004F3847,0x   ; f145:
;490: 004F3847,0x   ; f146:
;498: 004F3847,0x   ; f147:
;4A0: 004F3847,0x   ; f148:
;4A8: 004F3847,0x   ; f149:
;
;4B0: 004F3847,0x   ; f150:
;4B8: 004F3847,0x   ; f151:
;4C0: 004F3847,0x   ; f152:
;4C8: 004F3847,0x   ; f153:
;4D0: 004F3847,0x   ; f154:
;4D8: 004F3847,0x   ; f155:
;4E0: 004F3847,0x   ; f156:
;4E8: 004F3847,0x   ; f157:
;4F0: 004F3847,0x   ; f158:
4F8: 004F3847,0xA00A13EB   ; f159: DrawRect
;
500: 004F3847,0xA0A54AD3   ; f160: Unicode_sprintf
508: 004F3847,0xA08257C9   ; f161: Unicode_CopyStr2Str
510: 004F3847,0xA0A55057   ; f162: Unicode_GetCharByPosition
518: 004F3847,0xA1219250   ; f163: ws_2str
520: 004F3847,0xA0A552CB   ; f164: wsAlloc
528: 004F3847,0xA0A55307   ; f165: wsFree
;530: 004F3847,0x   ; f166:
;538: 004F3847,0x   ; f167:
;540: 004F3847,0x   ; f168:
;548: 004F3847,0x   ; f169:
;-------------------------API functions--------------------------------
550: 004F3847,0xA0FCF001   ; f170: OpenWriteCloseFile
558: 004F3847,0xA0FCF051   ; f171: Hex2Int
560: 004F3847,0xA0FCF1B1   ; f172: DrawText
568: 004F3847,0xA0FCF0A1   ; f173: StrAnsi2Uni
570: 004F3847,0xA0FCF0C1   ; f174: StrUni2Ansi
;578: 004F3847,0x   ; f175:
;580: 004F3847,0x   ; f176:
;588: 004F3847,0x   ; f177:
;590: 004F3847,0x   ; f178:
;598: 004F3847,0x   ; f179:
;
5A0: 004F3847,0xA0A73CE7   ; f180: GetDateTime
5A8: 004F3847,0xA082AD87   ; f181: GetWeek
5B0: 004F3847,0xA08D1D0D   ; f182: GetProfile
5B8: 004F3847,0xA08D1BDB   ; f183: SetProfile
5C0: 004F3847,0xA159B7B8   ; f184: dwMODdw
;5C8: 004F3847,0x   ; f185:
;5D0: 004F3847,0x   ; f186:
;5D8: 004F3847,0x   ; f187:
;5E0: 004F3847,0x   ; f188:
;5E8: 004F3847,0x   ; f189:
;----------------Main MP Functions & System Patches--------------------
5F0: 004F3847,0xA0FC1151   ; f190: RunScaner
5F8: 004F3847,0xA0FC3001   ; f191: SpellTime
600: 004F3847,0xA0FC7601   ; f192: MiniGPS
608: 004F3847,0xA0FC1021   ; f193: RunGraphSearcher
610: 004F3847,0xA0FC12A1   ; f194: GetAllPatchesByInject
;618: 004F3847,0x   ; f195:
620: 004F3847,0xA0FC0C01   ; f196: GetBuffer - x65
;628: 004F3847,0x   ; f197:
;630: 004F3847,0x   ; f198:
;638: 004F3847,0x   ; f199:
;----------------------------------------------------------------------
;RAM Variables
;----------------------------------------------------------------------
640: 004FF746,0xA863E398   ; v00: RamCap
648: 004FF746,0xA863E39A   ; v01: RamLS
650: 004FF746,0xA864A93C   ; v02: RamNet
658: 004FF746,0xA864A942   ; v03: RamNetRX
;660: 004FF746,0xA8656ED0   ; v04: RamMissedCalls
;668: 004FF746,0xA865CAE8   ; v05: RamMissedSMS
660: 004F3847,0xA0FDE291   ; v04: RamMissedCalls for * RamMissedEventAddrSpike *
668: 004F3847,0xA0FDE285   ; v05: RamMissedSMS for * RamMissedEventAddrSpike *
670: 004FF746,0xA860E038   ; v06: RamDateTime
678: 004FF746,0xA86E821C   ; v07: RamAlarm
680: 004FF746,0xA8682A18   ; v08: RamAccPoint
688: 004FF746,0xA86E71B0   ; v09: RamScreensaver
;
690: 004FF746,0xA860E060   ; v10: RamAutoTime
698: 004FF746,0xA86E71B8   ; v11: RamStby
6A0: 004F3847,0xA0FDE281   ; v12: RamMissedEvents for * RamMissedEventAddrSpike *
6A8: 004FF746,0xA8625750   ; v13: RamIsLocked
6B0: 004FF746,0xA860CAC8   ; v14: RamNetOnline
6B8: 004FF746,0xA865F22A   ; v15: RamScreenBrightness
6C0: 004FF746,0xA860DED1   ; v16: RamMenuAnywhere
6C8: 004FF746,0xA86475B8   ; v17: ram_ShutdownMode(hword)
6D0: 004FF746,0xA8682A88   ; v18: RamIsShutdown
6D8: 004FF746,0xA8609EF8   ; v19: RamMainscreenAccuIcon
;
6E0: 004FF746,0xA86E4FF0   ; v20: ram_random_seed
;6E8: 004FF746,0x   ; v21:
;6F0: 004FF746,0x   ; v22:
;6F8: 004FF746,0x   ; v23:
;700: 004FF746,0x   ; v24:
;708: 004FF746,0x   ; v25:
;710: 004FF746,0x   ; v26:
718: 004FF746,0xA864BEC4   ; v27: RamProfileNum
;----------------------------------------------------------------------
;Other Variables & Constants
;----------------------------------------------------------------------
720: 004FF746,0xA8708540   ; z00: FreeRAM
728: 004FF746,0x000012B3   ; z01: LP_MonthsShort
730: 004FF746,0x00000469   ; z02: Pic_Big0
738: 004FF746,0x000003F0   ; z03: Pic_Little0
740: 004FF746,0x0000047F   ; z04: Pic_Extra
748: 004FF746,0x000004C5   ; z05: Pic_Profiles
750: 004FF746,0x000002CF   ; z06: Pic_Vibra
758: 004FF746,0x000003BE   ; z07: Pic_Call
760: 004FF746,0x000004CC   ; z08: Pic_AdvNet
768: 004FF746,0x000011A7   ; z09: LP_MonthsLong
;
770: 004FF746,0x00000400   ; z10: LP_Weekdays
778: 004FF746,0x00000477   ; z11: Pic_Calendar
780: 004FF746,0x000004E4   ; z12: Pic_AccuGraph
788: 004FF746,0xA08D9A35   ; z13: R0_in_DrawCanvas
;790: 004FF746,0x   ; z14:
;798: 004FF746,0x   ; z15:
;7A0: 004FF746,0x   ; z16: Pic_Lani
;7A8: 004FF746,0x   ; z17:
;7B0: 004FF746,0x   ; z18:
;7B8: 004FF746,0x   ; z19:
;
7C0: 004FF746,0xA0FD0050   ; z20: Additional_PIT_address
7C8: 004FF746,0x000004C5   ; z21: Additional_PIT_start
7D0: 004FF746,0x00000528   ; z22: Additional_PIT_end
7D8: 004FF746,0xA0FC0800   ; z23: Shortcuts Table
7E0: 004FF746,0xA0FC0A00   ; z24: Picture Relocation Table
7E8: 004FF746,0x0000F000   ; z25: Picture Relocation Base
7F0: 004FF746,0x00001E1E   ; z26: Next Picture Magic
;7F8: 004FF746,0x   ; z27:

;Additional Shortcuts
800: "ADD_TALKCURTIME",00,0xA0FC3001
814: "ADD_TESTPLAYSND",00,0xA09463C4
828: 00000000

;----------------------------------------------------------------------
;Picture Relocation
;----------------------------------------------------------------------
A00: 0x0225   ; r0: picture batt charge
A02: 0x0228   ; r1: picture batt
A04: 0x0134   ; r2: alarm clock (dis)
A06: 0x0112   ; r3: music animation
A08: 0x0305   ; r4: net indicators (standart)
A0A: 0x0140   ; r5: calculator_pics
;A0C: 0x02B7   ; r6: bluetooth icons (activity)
A0E: 0x02CC   ; r7: IrDA icons (activity)
A10: 0x02CE   ; r8: locked kb icon
A12: 0x03F0   ; r9: small digits (0)
A14: 0x0469   ; r10: big digits (0)
A16: 0x01B2   ; r11: folder icons (small)
A18: 0x020F   ; r12: group icons (big)
A1A: 0x02C8   ; r13: GPRS (transferring)
A1C: 0x02D3   ; r14: GPRS (attached)
A1E: 0x0345   ; r15: group icons (small)
A20: 0x0476   ; r16: illumination control
A22: 0x0468   ; r17: analog clock
A24: 0x04BB   ; r18: adjusting volume (increasing)
A26: 0x047F   ; r19: pic extra
A28: 0x04C5   ; r20: pic profiles
A2A: 0x04CC   ; r21: pic advnet
A2C: 0x0477   ; r22: pic calendar

#pragma disable old_equal_ff
+0




Master-Patch v3 RC2 #114

; ** Master-Patch v3 RC2 #114 **
; (c) 1nvisible
; (r) avkiev, chaos, KiRiK, ~Jhellico, benj9, KreN
; (p) Lisugar

;Version: 3.00 RC2
;Build: #114 (11.03.2006 20:29:38)

; (!) API
; (!) FunctionLibrary(z00, f105, f106, f022, f017, f002, f020, f021, f107, f108, f109, f170, z21, z22, f171)
; Undo PIT Table

### M6C V50 ###
083C220: 000050E30B00001A60408FE2 04E08FE2,04F01FE5,0xA0FC12C5 ;entry for java
08D1BDC: 041C55F7E4EF082C0CD2 004B9847,0xA0FC1081,C046 ;entry for SetProfile
0A6E454: 0C4C00921823201C 004B9847,0xA0FC1151 ;entry for Loader
00B1F2C: A080022020706070 004DA847,0xA0FC1189 ;entry for Initializer
00DDC10: 192189014018C068 00490847,0xA0FC10F1 ;entry for PIT
1216888: 0C1CFFF777FE661C 004FB847,0xA0FC10C1 ;entry for GetLP

#pragma enable old_equal_ff
;Bufferizator
0FC0C00: BCB5FFF78DFD3F6800239F4212D0DB43
0FC0C10: 9F420FD03E680023DB439E420AD08642
0FC0C20: 01D01837F6E77968002903D07868061C
0FC0C30: B968BCBD002000210026BCBD

;Flasher
0FC0C50: FFB5FFF779FBFFF763FDBF6800260023
0FC0C60: B9590B604B6004363C2EF9D1FFF758FD
0FC0C70: 3D682A680023DB439A425ED0E4B48AB0
0FC0C80: 68467FA1FFF714FA6846FFF749FD391D
0FC0C90: FFF7FAF90AB0E4BC00283FDBFFF740FD
0FC0CA0: 79680B7880241C4207D0EFB4FFF7B0F9
0FC0CB0: 01248440EFBC1C4202D1002600222FE0
0FC0CC0: 130F01D0012B08D000F0AAF8BFB4FFF7
0FC0CD0: E7F9061CBFBC002212E000F0A1F8001F
0FC0CE0: 82089200904203D0821A04239A1A8018
0FC0CF0: 4A88BFB48018FFF7D3F9061CBFBC0431
0FC0D00: 0023CC5CF45401338342FAD1FFB4FFF7
0FC0D10: 07FD7868FFF7C8F9FFBC01E000260022
0FC0D20: 6E60002A00D08219AA60EB68002B02D0
0FC0D30: FFB49847FFBC18359BE7C048FFF7B0F9
0FC0D40: FFF7EEFC7860FE68001D021D3FA1FFF7
0FC0D50: 03FB002815D0FFF7E3FC7868AD3000F0
0FC0D60: 2FF8FFF7DDFC7868001D011DFFF7F8FA
0FC0D70: 002806D0FFF7D4FC7868AD3000F020F8
0FC0D80: EFE7FFF7CDFC7868001D011DFFF7ECFA
0FC0D90: 0020C04330607060B060F060FFF7C0FC
0FC0DA0: 7868FFF781F9A048FFF7BAFC7860FFF7
0FC0DB0: CFFAFFBD

;Enhance GetLP
0FC0DC0: 3FB58FB0021C684627A1FFF771F9FFF7
0FC0DD0: A7FC79686846FFF757F90FB000281EDB
0FC0DE0: FFF79EFC7D682D6810352A8832606A68
0FC0DF0: 7260203801B4FFF753F904BCB0601035
0FC0E00: 002A05D02B78037001300135013AF7E7
0FC0E10: FFF786FC78680068FFF746F910363FBD
0FC0E20: FFB513011B0F0FD0FFF77AFCBF68013B
0FC0E30: 9B00FF583E68B400E419043428692060
0FC0E40: 0020606001363E60FFBDC046303A5C4D
0FC0E50: 6973635C506174636865735C6770665C
0FC0E60: 2A2E677066000000303A5C4D6973635C
0FC0E70: 506174636865735C6770665C25730000
0FC0E80: 303A5C4D6973635C506174636865735C
0FC0E90: 7074635C253038782E70746300

;Addition PIT
0FC0F00: FFB54D48FFF7CCF8FFF70AFC3860061C
0FC0F10: 4A48FFF7C5F8051CFFF702FC7860404F
0FC0F20: 391C404B9F421AD23A688F4210D1474B
0FC0F30: 9A4246D0444B9A4243D0414B9A4240D0
0FC0F40: 404B9A423DD0424B9A423ED0384BF918
0FC0F50: 364B9A4201D100F043F81037E1E70023
0FC0F60: DB4333607360B360F3603361736139A0
0FC0F70: FFF7D6FB79686A1AFFF7EAFAFFF7D0FB
0FC0F80: 7868FFF791F83C20FFF78AF8FFF7C8FB
0FC0F90: B860061C10200001051C0024281CFFF7
0FC0FA0: 7FF8305104343C2CF8D12348FFF778F8
0FC0FB0: FFF7B6FB0021C9430160F8601A487860
0FC0FC0: FFBD1B4BFF18391CC8E71A4BFF18391C
0FC0FD0: C4E7

;
0FC0FE0: 9FB57B6833601B011B0FBB6804D1002B
0FC0FF0: 02D0FFB49847FFBC3361FB68F3600023
0FC1000: B3607360103700203B5C002B02D02B54
0FC1010: 0130F9E70A232B542D1818369FBD

;RunGraphSearcher
0FC1020: 000000A0000000A2446F6E65E4D3C2B1
0FC1030: 0000020000000A000010000000400000
0FC1040: 45454C49454546554646535F46465300
0FC1050: BBBB0000303A5C4D6973635C50617463
0FC1060: 6865735C7074635C636F6E666967732E
0FC1070: 74787400
0FC1080: E0B5041CFFF760F9092C11D2201CFFF7
0FC1090: 47FB7F680026BE4207D0F643BE4204D0
0FC10A0: FFF73AFB3870FFF7D3FDE0BC0DF0C0EF
0FC10B0: FFF74EF9E0BC01B010BD
0FC10C0: A0273F06B84205D3071C081C391CFEF7
0FC10D0: FFFFF8BD051C0C1C661C002000B50DF0
0FC10E0: A8EF
0FC10F0: 192189014018C068808AFEB5FFF764FB
0FC1100: BC4213D2FFF70CFBFE68002E0DD0F543
0FC1110: 002D0AD00025ED433368AB4205D09C42
0FC1120: 01D01036F8E7301D0BE0FEBD3E1CFFF7
0FC1130: 4FFBBC4200D9FEBDFFF742FBA41BE400
0FC1140: E019FEBC01B010BD

;Scanner
0FC1150: 0022154C00921823201CFFB5FFF7E0FA
0FC1160: 0020C043002338607860B860F8600FA7
0FC1170: 3E680025ED43AE4202D0B0470437F7E7
0FC1180: FFBC04BC0432104780B5FFF7C9FA0025
0FC1190: 3D607D60BD60FD6080BCA08002202070
0FC11A0: 60700DF046EFC04618430000010FFCA0
0FC11B0: 510CFCA0FFFFFFFFFFFFFFFFFFFFFFFF
0FC11C0: FFFFFFFFFFFFFFFFFFFFFFFF

;GetAllPatchesByInject
0FC12A0: FEB5002806D0FFF73BFABF6801388000
0FC12B0: 3F183868FEBD
0FC12C0: F081BDE8002801D11BA47047EFB52068
0FC12D0: 1A4B984229D16068194B984202D1FFF7
0FC12E0: B7FC21E0174B984219D1201C08300021
0FC12F0: FFF732F9031C201C2030FFF72DF9021C
0FC1300: 201C1830FFF728F9011C02B4201C1030
0FC1310: FFF722F902BCF0B49847F0BC04E00A4B
0FC1320: 984201D109A4FFE7EFBDEFBC01983E60
0FC1330: 07B0FFF7C6EFC046000000004D504A43
0FC1340: 434F4E4652554E464D50564E76332E30
0FC1350: 302052433200
#pragma disable old_equal_ff

;Fix MP v3 RC2(Benj9)
0FC103C: 00400000 00800000 ; (16K-> 32K)







GraphPatchManager v3.1


; (c) KreN
; (p) Lisugar

; (!) MasterPatch v3 RC2 by 1nvisible


### M6C V50 ###
+08BFD40

0: 261C002D05900490 004FB847,0xA0FC3E01 ; Hook in DrawMainScreenIcon
+0
#pragma enable old_equal_ff
0FC3E00: 1883261C05900490FFB50120FCF700FC
0FC3E10: 696904300268002A03D003B4904703BC
0FC3E20: F7E7FFBC002D0BF004E9
#pragma disable old_equal_ff
+0




完成~    希望高手过目  谢谢了
您需要登录后才可以回帖 登录 | 注册会员 微信登录

本版积分规则

小黑屋|Archiver|手机版|爱技术 ( 沪ICP备08115260号-3 )

GMT+8, 2025-8-10 10:15

Powered by Discuz! X3.4 Licensed

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表