⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 patchtbl.s

📁 完整的Bell实验室的嵌入式文件系统TFS
💻 S
字号:
/* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -