如何在MIPS汇编语言中定义常量?

时间:2016-06-17 11:32:31

标签: assembly mips

我在网上查了一下,但我唯一能找到的就是这个语法PI = 3.1415,但是由于某种莫名其妙的原因,这在MIPS模拟器程序中不起作用我使用的是{{3 }}。我认为它应该有效,如果它是MIPS语言规范的一部分。在尝试组装一个简单的hello world程序时,编译器说我的代码中有一个无效的语言元素。这是代码本身:

################################################################################
#                                                                              #
# This is a hello world program in the MIPS assembly language. It prints out   #
# "Hello, World!" on the screen and exits.                                     #
#                                                                              #
################################################################################

# System call code constants
SYS_PRINT_STRING = 4
SYS_EXIT         = 10

.data
    msg: .asciiz "Hello, World!\n"

.text
.globl __start
__start:
    la $a0, msg              # Load the address of the string "msg" into the
                             # $a0 register
    li $v0, SYS_PRINT_STRING # Store the system call for printing a string on
                             # the screen in the $v0 register
    syscall

    li $v0, SYS_EXIT         # Store the system call to exit the program in the
                             # $v0 register
    syscall

1 个答案:

答案 0 :(得分:5)

你想要的是替换宏。常数通常指常数变量 MIPS是一个指令集,它不会在指令本身旁边定义任何内容。宏由汇编程序实现,因此您需要检查汇编程序文档。

对于MARS,指令为MotionEvent。示例:

MyLinearLayout