Re: In search of the perfect Disassembler
- From: ararghmail506NOSPAM@xxxxxxxxxxxxxxxxx
- Date: Mon, 06 Jun 2005 15:19:04 -0500
On Mon, 6 Jun 2005 21:13:55 +0200, "wolfgang kern"
<nowhere@xxxxxxxxxxx> wrote:
<snip>
>| I have posted a simple example before.
>| You seem to have totally ignored this too. Here it is (again)
>
>| function trouble(string s)
>| if halt(s, s) = false
>| return true
>| else
>| loop forever
>
>I asked for CODE ... (either a hex-dump or ASM)
Here:
trouble Proc s:string
; ===> IF halt(s, s) = false THEN
push s
push s
call halt
cmp eax, 0
jne IF_01004
; ===> trouble = true
mov eax, 1
jmp IF_01003
; ===> ELSE
L_Here:
; ===> Here: GOTO Here
jmp L_Here
; ===> END IF
IF_01003:
ret
trouble EndP
>
>So please,
> please, let me see the "code" of this abstract HLL lines.
See above.
<snip>
--
ArarghMail506 at [drop the 'http://www.' from ->] http://www.arargh.com
BCET Basic Compiler Page: http://www.arargh.com/basic/index.html
To reply by email, remove the garbage from the reply address.
.
- Follow-Ups:
- Re: In search of the perfect Disassembler
- From: Alex McDonald
- Re: In search of the perfect Disassembler
- From: wolfgang kern
- Re: In search of the perfect Disassembler
- References:
- Re: In search of the perfect Disassembler
- From: Charles A. Crayne
- Re: In search of the perfect Disassembler
- From: snowman
- Re: In search of the perfect Disassembler
- From: wolfgang kern
- Re: In search of the perfect Disassembler
- From: Alex McDonald
- Re: In search of the perfect Disassembler
- From: wolfgang kern
- Re: In search of the perfect Disassembler
- From: snowman
- Re: In search of the perfect Disassembler
- From: wolfgang kern
- Re: In search of the perfect Disassembler
- From: snowman
- Re: In search of the perfect Disassembler
- From: wolfgang kern
- Re: In search of the perfect Disassembler
- Prev by Date: Re: Randy vs. Betov: from an outsider
- Next by Date: Re: Randy vs. Betov: from an outsider
- Previous by thread: Re: In search of the perfect Disassembler
- Next by thread: Re: In search of the perfect Disassembler
- Index(es):
Relevant Pages
|