0

我在 6502 中遇到了另一个问题....

我正在尝试添加两个 n 字节整数以产生 n 字节结果。我不完全确定我是否对这个项目的 6502 芯片有足够的了解,因此对我当前代码的任何反馈都会非常有帮助。

我知道我应该使用 INX(增加 x 寄存器)和 DEY(减少 y 寄存器),但我不确定操作码的位置。

说明:使用绝对索引寻址添加两个 n 字节整数

Adding two n-byte integers using absolute indexed addressing 
The addends start at memory locations $xxxx, $yyyy, answer is at $zzzz
Byte length of the integers is at $AAAA (¢—>256)

START = $0500
              CLC
              ____
loop          LDA      $0400, x 
              ADC      $0410, x
              STA      $0412, x
             ____
             BNE      loop
             BRK

LDA、ADC 和 STA 在循环之外(第一次在汇编中使用循环)

编辑:

    Variables

A1 = $0600
B1 = $0700
B2 = $0800
Z1 = $0900

    [START] = $0500

            CLC             18  
            LDX             AE  
            LDY     A1      AC
loop:       LDA     B1, x   BD      
            ADC     B2, x   7D  
            STA     Z1, x   9D      
            INX     E8  
            DEY             88  
            BNE    loop     D0
4

1 回答 1

3
;Adding two n-byte integers using absolute indexed addressing 
;The addends start at memory locations $xxxx, $yyyy, answer is at $zzzz
;Byte length of the integers is at $AAAA (¢—>256)

        CLC
        LDX #0        ; start at the beginning
        LDY $AAAA     ; load length into Y
loop:   LDA $xxxx, X  ; load first operand
        ADC $yyyy, x  ; add second operand
        STA $zzzz, x  ; store result
        INX           ; go on to next byte
        DEY           ; count how many are left
        BNE loop      ; if more, do more
于 2014-02-03T23:46:01.880 回答