关于arm汇编中冒号的问题

近日在学习uboot的时候,对lowlevel_init.S里面的数字加冒号的用法有点不清楚,代码如下

/*
 * system_clock_init: Initialize core clock and bus clock.
 * void system_clock_init(void)
 */
system_clock_init:
    ldr r0, =S5PC110_CLOCK_BASE     @ 0xE0100000

    /* Check S5PC100 */
    cmp r7, r8
    bne 110f
100://就是这个地方100加冒号的用法
    /* Set Lock Time */
    ldr r1, =0xe10          @ Locktime : 0xe10 = 3600
    str r1, [r0, #0x000]        @ S5PC100_APLL_LOCK
    str r1, [r0, #0x004]        @ S5PC100_MPLL_LOCK
    str r1, [r0, #0x008]        @ S5PC100_EPLL_LOCK
    str r1, [r0, #0x00C]        @ S5PC100_HPLL_LOCK

不知道你这个问题是否已经解决, 如果还没有解决的话:

如果你已经解决了该问题, 非常希望你能够分享一下解决方案, 以帮助更多的人 ^-^