分享 Keil C51 V9.52 下载地址

2020-01-20 18:54发布

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
22条回答
wanyou132
1楼-- · 2020-01-22 13:10
What's New in C51 Version 9.52
[Cx51 Compiler]
Modified: the warning C294: unreachable code will be issued instead of a compiler error for unreachable code statements. Example:
int foo = 1 ;
int bar ;

int main( void )
{
  switch( foo )
  {
    bar = 0 ;   // warning C294: unreachable code
    case 1:
      bar = 1 ;
      break ;
    case 2:
      bar = 2 ;
      break ;
  }
  return( 0 ) ;
}
Corrected: wrong XDATA address calculation which may occurs with combined pointer and int arithmetic. Example:
unsigned char xdata b[256];  // Problem does not exist when array size > 256
void xdata *p;
unsigned int i = 256;

void main (void) {
  p = &b[256-i];     // Correct result.
  p = b + 256 - i;   // Incorrect result. Only the LOW BYTE of i has been used for the calculation.
}
Corrected: an ignored pointer cast which occurs under some circumstances with far and generic pointers. Example:
unsigned short foo (char far *farPtr) {

  return (unsigned char) farPtr;  // Explicite cast is ignored.
}
[LX51 Linker/Locater]
Corrected: a wrong address calculation which occurs when const in code banks combined with linker code packing.
Added: Error 144: OVERLAY GROUP SEGMENT CANNOT HAVE 'LAST' ADDRESS ASSIGNMENT message. The LAST attribute cannot be used to locate segments that collect overlayable segments.
[AX51 Assembler]
Corrected: an erroneously issued error A57 'REGISTER USAGE' REQUIRES A PUBLIC CODE SYMBOL which occurs when REGUSE directive is used by mixed-case (composed by upper and lower case characters) symbols.
[New Supported Devices]
Texas Instruments
CC2541F128 and CC2541F256.
[ULink2]
Wiht this release the firmware of the ULINK2 target debuger will be updated to version 2 which will not work with older C51 installations.
The .C51ULINKUtilitiesUL2_Configure.exe tool allows to switch back to an older firmware version when backward compatibility is needed.
[µVision4]
This C51 release comes with µVision V4.72.9.0.
lksvshdl
2楼-- · 2020-01-22 17:43
 精彩回答 2  元偷偷看……
qiubin2012
3楼-- · 2020-01-22 22:17
如何破解???
dianzixiehui
4楼-- · 2020-01-23 00:34
谢谢~楼主~用到了,哈哈  
老婆爱吃虾
5楼-- · 2020-01-23 04:56
上午找了一上午没有发现,下午一搜索就出来了,下载来试试,谢谢楼主了哈
ppdd
6楼-- · 2020-01-23 08:28
用迅雷可下!!

2014-06-25_111422.png (53.5 KB, 下载次数: 0)

下载附件

2014-6-25 11:14 上传

一周热门 更多>