1

我正在尝试构建组件 YASM 代码,该代码应该计算 2D 平面上两点(A 和 B)之间的距离。

这是我用来构建代码的命令:

yasm -f elf64 -g dwarf2 -l distance.lst distance.asm

distance.asm:2:错误:行首预期的标签或指令 distance.asm:4:错误:行首预期的标签或指令

我是组装新手,无法弄清楚如何修复错误:

    segment .data
Ax  dq      0       ; x coordinate of A
Ay  dq      0       ; y coordinate of A
Bx  dq      1       ; x coordinate of B
By  dq      1       ; y coordinate of B

    segment .text
    global _start
_start:
mov     rax,    [Ax]    ; Writing values
mov     rbx,    [Ay]    ; of A and B
mov     rcx,    [Bx]    ; coordinates to
mov     rdx,    [By]    ; registers
sub     rax,    rcx     ; Length of the first cathetus
sub     rbx,    rdx     ; Length of the second cathetus
imul    rax,    rbx     ; Suqare of distanse between A and B

我的问题是:为什么我会收到上面显示的错误?(我已经阅读过关于 stackoverflow 的类似问题,但我仍然无法弄清楚我的代码有什么问题)

4

1 回答 1

2

而不是标签

Ax, Ay, Bx, By

使用其他人,例如

Mx, My, Nx, Ny

因为标签不能将注册名称注册为AX, BX, CX, ... (Ay并且By可以)。

于 2018-04-16T12:08:44.090 回答