patchtbl.s

来自「完整的Bell实验室的嵌入式文件系统TFS」· S 代码 · 共 49 行

S
49
字号
/* patchtbl.s, openbios_walnut, walnut_bios 6/17/99 13:42:13  * * *  File Name:   patchtbl.s * *  Function:    File that reserves space in the .text section so that *               the patch utility can use it for fixing 405GP errata #9. * *  Author:      M. Game * *  Change Activity- * *  Date        Description of Change                                    BY *  ---------   ---------------------                                    --- *  14-Jun-99   Created                                                  MCG * *----------------------------------------------------------------------------- * * * To reserve the appropriate amount of space in "patch_tbl", modify the * constant PATCH_ENTRIES below to reflect the number of load/store with * update instruction pairs in the application. * * To determine how many of these situations exist in an application, run the * patch utility against the application with PATCH_ENTRIES set to 1.  The * initial run of the patch utility will tell you the exact value to set * PATCH_ENTRIES for the application.  PATCH_ENTRIES can be set to a larger * value than required if desired. */        .set PATCH_ENTRIES, 134/* ********************** DO NOT MODIFY BELOW THIS POINT ********************* */        .text        .align  2                           /* must be on a 4 byte boundary */        .globl  patchtblpatchtbl:        .space  PATCH_ENTRIES*8             /* 8 bytes for each patch */        .type  patchtbl,@function        .size  patchtbl,.-patchtbl

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?