PSP玩 ps永恒传说汉化版 的CMF
2个回答
展开全部
_S ULJS-00015
_G Tales of Eternia
_C0 钱
_L 0x211405E0 0x05F5E0FF
_C0 料理全开
_L 0x01140AAC 0x0000FFFF
_L 0x01140AAE 0x0000FFFF
_L 0x01140AB0 0x0000000F
_C0 ジイニ数
_L 0x21100DAC 0x05F5E0FF
_C0 不遇敌
_L 0x21140850 0x050105DC
_C0 称号全开
_L 0x0114095A 0x0000FFFF
_L 0x0114095C 0x0000FFFF
_L 0x0114095E 0x0000FFFF
_L 0x01140960 0x0000FFFF
_L 0x01140962 0x0000FFFF
_L 0x01140964 0x0000FFFF
_L 0x01140966 0x0000FFFF
_C0 掉率
_L 0x0107425E 0x00000064
_L 0x0107427A 0x00000002
_C0 躲避球
_L 0x01134AC9 0x00000000
我自己转的,太BT的都没有,这个游戏就是要自己好好打才有意义,这些我都试过的
_G Tales of Eternia
_C0 钱
_L 0x211405E0 0x05F5E0FF
_C0 料理全开
_L 0x01140AAC 0x0000FFFF
_L 0x01140AAE 0x0000FFFF
_L 0x01140AB0 0x0000000F
_C0 ジイニ数
_L 0x21100DAC 0x05F5E0FF
_C0 不遇敌
_L 0x21140850 0x050105DC
_C0 称号全开
_L 0x0114095A 0x0000FFFF
_L 0x0114095C 0x0000FFFF
_L 0x0114095E 0x0000FFFF
_L 0x01140960 0x0000FFFF
_L 0x01140962 0x0000FFFF
_L 0x01140964 0x0000FFFF
_L 0x01140966 0x0000FFFF
_C0 掉率
_L 0x0107425E 0x00000064
_L 0x0107427A 0x00000002
_C0 躲避球
_L 0x01134AC9 0x00000000
我自己转的,太BT的都没有,这个游戏就是要自己好好打才有意义,这些我都试过的
2010-04-15
展开全部
/**************************************************************************************************
* File Name : biglcd.c *
* Created : 08/12/24 *
* Author : daily *
* Model : LCD *
* Description : get a flag and show the corresponding information , the information as follows: *
* the lectrical action information , the electrical fault information ,the *
* fault-tolerant information , the emergency information , the current mode *
* information , air-conditioning and water heater's temperature information *
**************************************************************************************************/
#include "sfr62p.h"
#include "biglcd.h"
extern void BigLCDInit(void); /* initialize the LCD */
extern void BigLCDShow(uchar ucRow, uchar ucCol, const uchar *pucMsg);
/* write string to LCD in ucRow
row , ucCol column */
extern void BigLCDLightOn(void); /* LCD light background */
extern void BigLCDLightOff(void); /* LCD unlight background */
extern void BigLCDClear(void); /* clear display */
extern void BigLCDLightOn(void); /* LCD display on */
extern void BigLCDLightOff(void); /* LCD display off */
extern void BigLCDWriteMsg(uchar ucCol, const uchar *pucMsg); /* write the string to LCD */
extern uchar BigLCDReadCreg(void); /* read command from LCD */
extern void BigLCDWriteData(uchar ucData); /* write data to LCD */
extern void BigLCDWriteCreg(uchar ucCommand); /* write command to LCD */
extern int BigLCDIsBusy(void); /* check busy flag */
extern void BigLCDShowFlag(uchar ucFlag); /* get the flag and show the
corresponding message */
extern void BigLCDShowFlag1(uchar ucFlag, const uchar *pucMsg);/* show the timing message of
TV and air-conditioning */
extern void Clear_img(void); /* clear display */
extern void BigLCDDelay(unsigned int uiNum); /* delay some time */
extern void Img_disp1(uchar ucX0, uchar ucY0, uchar ucX1, uchar ucY1, uchar *pucImg);
/* set the address and drew the
picture */
extern void Img_disp2(uchar ucX0, uchar ucY0, uchar ucX1, uchar ucY1,uchar *pucImg,uchar ucCol);
/* drew the ucCol column of
the picture */
extern void Con_disp(uchar ucX0, uchar ucY0, uchar ucX1, uchar ucY1);
/* clear one part of the screen */
extern void BigLCDBoot1(void); /* drew one part of the boot interface */
extern void BigLCDBoot2(void); /* drew one part of the boot interface */
extern void BigLCDBoot3(void); /* drew one part of the boot interface */
extern void BigLCDBoot(void); /* drew one part of the boot interface */
/**************************************************************************************************
* Function Name : void BigLCDInit(void) *
* Description : initialize the LCD *
* Date : 08/12/22 *
* Parameter : none *
* Function Used : BigLCDWriteCreg() : write the initialization commands to the LCD *
* Return Code : none *
* Notice : none *
* Author : daily *
**************************************************************************************************/
void BigLCDInit(void)
{
pd10 = pd10 | 0xf0; /* set the higher 4 bit of P10 as output, lower 4 bit as input */
p10_7 = 0;
E_N = 0;
pd0 = 0; /* set P0 as input */
BigLCDWriteCreg(0x30); /* Set up the basic instruction */
BigLCDWriteCreg(0x0c); /* display on */
BigLCDWriteCreg(0x01); /* clear display */
BigLCDWriteCreg(0x06); /* AC add 1 */
return ;
}
/**************************************************************************************************
* Function Name : void BigLCDShow(uchar ucRow,uchar ucCol,uchar *pucMsg) *
* Description : write string to LCD in ucRow row,ucCol column *
* Date : 08/12/22 *
* Parameter : uchar ucRow :X axis *
* : uchar ucCol :Y axis *
* : uchar *pucMsg :address of string *
* Function Used : BigLCDWriteCreg() : write the address information to LCD *
* : BigLCDWriteMsg() : write the string to LCD *
* Return Code : none *
* Notice : ucRow between 0~3,ucCol between 0~7,the length of the string don't over *
* (16-2ucCol)byte *
* Author : daily *
**************************************************************************************************/
void BigLCDShow(uchar ucRow, uchar ucCol, const uchar *pucMsg)
{
* File Name : biglcd.c *
* Created : 08/12/24 *
* Author : daily *
* Model : LCD *
* Description : get a flag and show the corresponding information , the information as follows: *
* the lectrical action information , the electrical fault information ,the *
* fault-tolerant information , the emergency information , the current mode *
* information , air-conditioning and water heater's temperature information *
**************************************************************************************************/
#include "sfr62p.h"
#include "biglcd.h"
extern void BigLCDInit(void); /* initialize the LCD */
extern void BigLCDShow(uchar ucRow, uchar ucCol, const uchar *pucMsg);
/* write string to LCD in ucRow
row , ucCol column */
extern void BigLCDLightOn(void); /* LCD light background */
extern void BigLCDLightOff(void); /* LCD unlight background */
extern void BigLCDClear(void); /* clear display */
extern void BigLCDLightOn(void); /* LCD display on */
extern void BigLCDLightOff(void); /* LCD display off */
extern void BigLCDWriteMsg(uchar ucCol, const uchar *pucMsg); /* write the string to LCD */
extern uchar BigLCDReadCreg(void); /* read command from LCD */
extern void BigLCDWriteData(uchar ucData); /* write data to LCD */
extern void BigLCDWriteCreg(uchar ucCommand); /* write command to LCD */
extern int BigLCDIsBusy(void); /* check busy flag */
extern void BigLCDShowFlag(uchar ucFlag); /* get the flag and show the
corresponding message */
extern void BigLCDShowFlag1(uchar ucFlag, const uchar *pucMsg);/* show the timing message of
TV and air-conditioning */
extern void Clear_img(void); /* clear display */
extern void BigLCDDelay(unsigned int uiNum); /* delay some time */
extern void Img_disp1(uchar ucX0, uchar ucY0, uchar ucX1, uchar ucY1, uchar *pucImg);
/* set the address and drew the
picture */
extern void Img_disp2(uchar ucX0, uchar ucY0, uchar ucX1, uchar ucY1,uchar *pucImg,uchar ucCol);
/* drew the ucCol column of
the picture */
extern void Con_disp(uchar ucX0, uchar ucY0, uchar ucX1, uchar ucY1);
/* clear one part of the screen */
extern void BigLCDBoot1(void); /* drew one part of the boot interface */
extern void BigLCDBoot2(void); /* drew one part of the boot interface */
extern void BigLCDBoot3(void); /* drew one part of the boot interface */
extern void BigLCDBoot(void); /* drew one part of the boot interface */
/**************************************************************************************************
* Function Name : void BigLCDInit(void) *
* Description : initialize the LCD *
* Date : 08/12/22 *
* Parameter : none *
* Function Used : BigLCDWriteCreg() : write the initialization commands to the LCD *
* Return Code : none *
* Notice : none *
* Author : daily *
**************************************************************************************************/
void BigLCDInit(void)
{
pd10 = pd10 | 0xf0; /* set the higher 4 bit of P10 as output, lower 4 bit as input */
p10_7 = 0;
E_N = 0;
pd0 = 0; /* set P0 as input */
BigLCDWriteCreg(0x30); /* Set up the basic instruction */
BigLCDWriteCreg(0x0c); /* display on */
BigLCDWriteCreg(0x01); /* clear display */
BigLCDWriteCreg(0x06); /* AC add 1 */
return ;
}
/**************************************************************************************************
* Function Name : void BigLCDShow(uchar ucRow,uchar ucCol,uchar *pucMsg) *
* Description : write string to LCD in ucRow row,ucCol column *
* Date : 08/12/22 *
* Parameter : uchar ucRow :X axis *
* : uchar ucCol :Y axis *
* : uchar *pucMsg :address of string *
* Function Used : BigLCDWriteCreg() : write the address information to LCD *
* : BigLCDWriteMsg() : write the string to LCD *
* Return Code : none *
* Notice : ucRow between 0~3,ucCol between 0~7,the length of the string don't over *
* (16-2ucCol)byte *
* Author : daily *
**************************************************************************************************/
void BigLCDShow(uchar ucRow, uchar ucCol, const uchar *pucMsg)
{
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询