Keil C51 953 版本更新,想下载的请尽速!连结有时效性!..

2020-01-21 21:41发布

这 Keil 又再次的将之前 C51 9.52 更新版本到 v9.53 了。喜欢尝鲜的请尽速啦!附上的连结有其时效性(不到 24 小时)!同样的也是逾时不候呦!~

连结在此 -> C51 v953.exe

What's New in C51 Version 9.53
■ [LX51 Linker/Locater]
■ Implemented: the PUBLICSONLY Linker directive.
The generated objectfile contains only public symbol information from the inputfile.
■ Enhanced: LX51 code optimization now removes common blocks for unused functions. Example:

  1. unsigned char a, b, c;
  2. unsigned char darr [0x10];

  3. void FuncA (void) {
  4.   darr[c] = darr[b];
  5. }

  6. void FuncB (void) {
  7.   darr[c] = darr[b];
  8. }

  9. void FuncC (void) {
  10.   darr[c] = darr[a] + darr[b];
  11. }

  12. void FuncD (void) {
  13.   darr[c] = darr[a] + darr[b];
  14. }

  15. void main(void) {
  16.   FuncA ();
  17.   FuncB ();
  18.   while(1);
  19. }


  20. ; FUNCTION FuncA (BEGIN)           ; FUNCTION FuncB (BEGIN)            ; FUNCTION FuncC (BEGIN)                ; FUNCTION FuncD (BEGIN)
  21.     R     MOV     A,#LOW darr          R     MOV     A,#LOW darr           R     MOV     A,#LOW darr ----- + ----- R     MOV     A,#LOW darr
  22.     R     ADD     A,b                  R     ADD     A,b                   R     ADD     A,b               |       R     ADD     A,b
  23.           MOV     R0,A     ----- + -----     MOV     R0,A                        MOV     R0,A              |             MOV     R0,A
  24.           MOV     A,@R0          |           MOV     A,@R0                       MOV     A,@R0             |             MOV     A,@R0
  25.           MOV     R7,A           |           MOV     R7,A                        MOV     R7,A              |             MOV     R7,A
  26.     R     MOV     A,#LOW darr    |     R     MOV     A,#LOW darr           R     MOV     A,#LOW darr ----- + ----- R     MOV     A,#LOW darr
  27.     R     ADD     A,c            |     R     ADD     A,c                   R     ADD     A,a               |       R     ADD     A,a
  28.           MOV     R0,A           |           MOV     R0,A                        MOV     R0,A              |             MOV     R0,A
  29.           MOV     @R0,AR7  ----- + -----     MOV     @R0,AR7                     MOV     A,@R0             |             MOV     A,@R0
  30.           RET                    |           RET                                 ADD     A,R7              |             ADD     A,R7
  31.                                  o-> Common code for FuncA and FuncB             MOV     R7,A              |             MOV     R7,A
  32.                                                                            R     MOV     A,#LOW darr       |       R     MOV     A,#LOW darr
  33.                                                                            R     ADD     A,c               |       R     ADD     A,c
  34.                                                                                  MOV     R0,A              |             MOV     R0,A
  35.                                                                                  MOV     @R0,AR7           |             MOV     @R0,AR7
  36.                                                                                  RET                       |             RET
  37.                                                                                                            o-> Common code for FuncC and FuncD
复制代码

In the example above the functions FuncC() and FuncD() are removed when the REMOVEUNUSED linker directive is specified. Now, the first part of the common code block (FUNCTION ?L?COM0001) is no longer necessary. In previous verions this was still part of the image. With the new linker enhancement even this code block is removed.

  1. ----- FUNCTION ?L?COM0001 (BEGIN) -----
  2. 000021 7408              MOV      A,#LOW darr  ---+
  3. 000023 2519              ADD      A,b             |
  4. 000025 F8                MOV      R0,A            |
  5. 000026 E6                MOV      A,@R0           |  o-> Common code for FuncC and FuncD
  6. 000027 FF                MOV      R7,A            |
  7. 000028 7408              MOV      A,#LOW darr  ---+
  8. 00002A         ?L?COM0002:
  9. 00002A F8                MOV      R0,A         ---+
  10. 00002B E6                MOV      A,@R0           |
  11. 00002C FF                MOV      R7,A            |
  12. 00002D 7408              MOV      A,#LOW darr     |  o-> Common code for FuncA and FuncB
  13. 00002F 251A              ADD      A,c             |
  14. 000031 F8                MOV      R0,A            |
  15. 000032 A607              MOV      @R0,AR7      ---+
  16. 000034 22                RET
  17. ----- FUNCTION ?L?COM0001 (END) -------
复制代码

■ [AX51 Assembler]
■ Enhanced: SEGMENT assembler statement now also supports ALIGN (1) as minimum alignment value.
■ [New Supported Devices]
■ CAST
S8051XC3.
■ Maxim
78M6613.
■ SigmaDesigns
ZM3102, ZM4102, ZM4101, and SD3402.
■ Silabs
C8051F970-A-GM, C8051F971-A-GM, C8051F972-A-GM, C8051F973-A-GM, C8051F974-A-GM, C8051F975-A-GM,
C8051F370, C8051F371, C8051F374, C8051F375,
C8051F388, C8051F389, C8051F38A, C8051F38B, C8051F38C,
C8051F390, C8051F391, C8051F392, C8051F393, C8051F394, C8051F395, C8051F396, C8051F397, C8051F398, C8051F399,
C8051F750, C8051F750B, C8051F751, C8051F751B, C8051F752, C8051F752B, C8051F755B, C8051F756B, C8051F757B,
C8051F760, C8051F761, C8051F762, C8051F765, C8051F766, C8051F767,
C8051T626, C8051T627, C8051T670, and C8051T671.
■ Texas Instruments
CC2541F128, CC2541F256, CC2543, CC2544, and CC2545.
■ Vitesse
VSC7388, VSC7389, VSC7390, VSC7391, VSC7395, VSC7420, and VSC7422.
■ [µVision]
■ This C51 release comes with µVision V5.11.2.0.
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。