如何将 8 个 ascii 值存储到寄存器或变量中?例如,我在 ascii 30 30 34 20 33 32 32 00 中有这些值
这将是 004 322
80x86 架构
mov eax 30303420
mov ebx 33323200
或者你可以在数据段中做
var db 30 , 30 ,34 ,20 ,33 ,32 ,32, 00
您也可以使用堆栈(LIFO):
mov eax 30303420
mov ebx 33323200
push ebx
push eax
或到一个寄存器 8 字节 = 8*8 位 = 64 位:
mov rax 3030342033323200h
编辑:
extern printf ; the C function, to be called
SECTION .data ; Data section, initialized variables
a: db 30 , 30 ,34 ,20 ,33 ,32 ,32, 00
fmt: db "a=%s",'0'
SECTION .text ; Code section.
global main ; the standard gcc entry point
main: ; the program label for the entry point
push ebp ; set up stack frame
mov ebp,esp
push a ; value of variable a
push fmt
call printf ; Call C function
add esp, 8 ; maybe I missed some bytes here
mov esp, ebp ; takedown stack frame
pop ebp ; same as "leave" op
mov eax,0 ; normal, no error, return value
ret ; return
为什么不使用堆栈?特别是如果值不是常量
编辑:woops 可能需要对 32 位字进行一些调整 :)
; load values
PUSH 30
PUSH 30
PUSH 34
PUSH 20
PUSH 33
PUSH 32
PUSH 32
PUSH 0
; do stuff
; [ESP] = 0 (last value)
; [ESP+7] = 30 (first value)
; restore stack pointer ("free memory")
SUB ESP, 8