?? patchtbl.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
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -