File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 2828. equ F_Bit , 0x40 / * when F bit is set , FIQ is disabled * /
2929
3030/ **
31- * @brief get the physical address of the symbol
31+ * @brief Get the physical address of the symbol
3232 *
33- * @param reg register to store the physical address
34- * @param symbol symbol name
35- * @param _pvoff the offset between the physical address and the virtual address
33+ * @param reg is the register to store the physical address
34+ * @param symbol is symbol name
35+ * @param _pvoff is the offset between the physical address and the virtual address
3636 * /
3737.macro get_phy , reg , symbol , _pvoff
3838 ldr \reg , =\symbol
3939 add \reg , \_pvoff
4040.endm
4141
4242/ **
43- * @brief calculate the offset between the physical address and the virtual address of the "_reset"
43+ * @brief Calculate the offset between the physical address and the virtual address of the "_reset"
4444 *
45- * @param tmp register which will be used to store the virtual address of the "_reset"
46- * @param out register which will be used to store the pv_off (paddr - vaddr)
45+ * @param tmp is the register which will be used to store the virtual address of the "_reset"
46+ * @param out is the register which will be used to store the pv_off (paddr - vaddr)
4747 * /
4848.macro get_pvoff , tmp , out
4949 ldr \tmp , =_reset
You can’t perform that action at this time.
0 commit comments