LC3汇编编程给我一个奇怪的标签错误?

LC3 assembly programming gives me a strange label error?

我正在制作一个计算 x 阶乘的 LC3 汇编程序。我有一个名为 "OUTERLOOP" 的标签,只要我的计数器值不为负,它就会被使用。但是,汇编程序给我这个错误:“32:标签 OUTERLOOP 已经出现。”它不会给我内部循环的这个错误。出于某种原因,当我试图让它分支回 OUTERLOOP 地址时,它似乎认为我正在尝试再次用 OUTERLOOP 命名另一个地址。有什么想法吗?

; This program calculates X! (X factorial). It can calculate
;   different numbers (4!, 6!, etc.) by changing the value of the first memory
;   location at the bottom of the code. It is currently set up to calculate
;   5!. The program does not account for zero or negative numbers as input.

; This program primarily uses registers in the following manner:
; R0 contains 0 (registers contain zero after reset)
; R1 contains multiplication result (6x5 = 30, 30x4 = 120, etc)
; R2 contains -1
; R3 contains counter for outer loop
; R4 contains counter for inner loop
; R5 contains current sum

           .ORIG  x3000

            LD    R1,INPUT            ; R1 contains input number
            LD    R2,xFFFF            ; R2 contains -1
            ADD   R3,R1,R2            ; R3 contains input number -1
            ADD   R3,R3,R2            ; R3 contains input number -2
                                      ;   (initializes outer count)
OUTERLOOP   ADD   R4,R0,R3            ; Copy outer count into inner count

; This loop multiplies via addition (6x5 = 6+6+6+6+6 = 30,
;   30x4 = 30+30+30+30 = 120, etc)
INNERLOOP   ADD   R5,R5,R1            ; Increment sum
            ADD   R4,R4,R2            ; Decrement inner count
            BRzp  INNERLOOP           ; Branch to inner loop if inner count
                                      ;   is positive or zero
            ADD   R1,R0,R5            ; R1 now contains sum result from inner loop
            AND   R5,R5,#0            ; Clear R5 (previous sum) to 0
            ADD   R3,R3,R2            ; Decrement outer count
            BRpz  OUTERLOOP           ; Branch to outer loop if outer count
                                      ;   is positive or zero

            ST   R1,INPUT             ; This address contains X!
            TRAP x25                  ; HALT

INPUT      .FILL  x0005               ; Input for X!, in this case X = 5
           .FILL  x0000
           .FILL  xFFFF               ; 2's complement of 1 (i.e. -1)
           .FILL  x0000               ; At program completion, the result is
                                      ;   stored here
           .END

尝试改变

BRpz  OUTERLOOP           ; Branch to outer loop if outer count

BRzp  OUTERLOOP           ; Branch to outer loop if outer count