68k组装:ORG $ 2000和DS.L功能

时间:2016-02-28 15:30:05

标签: assembly 68000 easy68k

我有一个68k汇编程序,用于计算3x3阵列对角线中的平均值并存储它。

    ORG    $1000
START:                  ; first instruction of program

* Put program code here

        move.w      n,d6        ; d6 = 0000 0003
        clr.l       d7          ; sum = 0
        move.w      #2,d4       ; size of element 0000 0002
        mulu.w      d6,d4       ; n times size of element 
                                ; d4 0000 0006
        movea.l     #A,a0       ; address of the array

loop    tst.w       d6          ; if (n == 0)
        beq         done        ; go to done else go to next instruction
        subq.w      #1,d6       ; 3 - 1, 2 - 1, 1 - 1, done
        add.w       (a0)+,d7    ; a0 address is incremented 2 bytes since its word length
                                ; content of address a0 is stored in d7
                                ; d7 = 0000 0001, 0000 0005, 0000 0009

        add.l       d4,a0       ; increment for diagonals which in 3x3 = 3 position = 6 bytes
                                ; a0 = 02 + 06 = 08, 08 + 06 = 10 hex = 16 decimal
        bra         loop        ; restart loop until condition is met

done    divu.w      n,d7        ; now d7 has the sume of diagonals
                                ; d7 = 1 + 5 + 9 = 15
                                ; 15 / 3 = 5
                                ; result is stored in d7 = 5    
        move.l      d7,store    ; d7 is stored in 



    SIMHALT             ; halt simulator

* Put variables and constants here

A       dc.w    1,2,3,4,5,6,7,8,9
n       dc.w    3

        org     $2000           ; what does this do?
store   ds.l    1               ; notice its long word    

    END    START        ; last line of source

我了解此代码中的所有内容除了行:

org     $2000           ; what does this do?
store   ds.l    1       ; notice its long word   

有人可以用简单的语言向我解释,“$ 2000”正在做什么组织和“ds.l 1”。什么是DS命令,它后面的数字1表示什么?

我检查内存块d7值是否存储在地址0000 2000中,但是这又与DS.L前面的数字1有什么关系?一般来说ORG会做什么?

2 个答案:

答案 0 :(得分:1)

ORG定义下一个值开始的内存地址

ds.l保留长字而不初始化

在这种情况下,一个长字保留在$ 2000而不指定任何特定值。 store被理解为指向此位置的指针。

我建议将 68k org 68k ds.l 写入您最喜爱的搜索引擎,并注意该信息可以快速获取。

答案 1 :(得分:0)

org $2000只需将当前地址设置为$2000即表示以下store标签位于$2000。无论出于何种原因,这都是预期的结果。在这种情况下,ds.l会保留指定数量的长字1move.l d7,store会在那里写d7。这可能是在这个任务的规范中,就像" 在地址$ 2000生成长字结果"。