Re: Question about jumps
- From: Herbert Kleebauer <klee@xxxxxxxxx>
- Date: Sun, 27 Aug 2006 12:49:37 +0200
Markus Pitha wrote:
Frank already gave you the answer, but a few questions:
segment .data
Is your program (and not only the data) really stored and executed
in the data segment? Which assembler sets the data segment executable?
successmsg db "eax is set to 1.", 0, 10^
Which purpose has the 0?
errmsg db "eax is not 1.", 0, 10.
succlen equ $-successmsg
errlen equ $-errmsg
global _start
_start:
mov eax, 1
- Follow-Ups:
- Re: Question about jumps
- From: Markus Pitha
- Re: Question about jumps
- References:
- Question about jumps
- From: Markus Pitha
- Question about jumps
- Prev by Date: Re: Question about jumps
- Next by Date: Re: Question about jumps
- Previous by thread: Re: Question about jumps
- Next by thread: Re: Question about jumps
- Index(es):
Relevant Pages
|