汇编,将ascii值存储到寄存器中

时间:2012-04-12 00:40:57

标签: string assembly

如何将8个ascii值存储到寄存器或变量中? 例如,我在ascii中有这些值 30 30 34 20 33 32 32 00

这将是004 322

80x86架构

2 个答案:

答案 0 :(得分:1)

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

答案 1 :(得分:0)

为什么不使用堆栈? 特别是如果值不是常数

编辑: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