Re: Evolution
From: Betov (betov_at_free.fr)
Date: 11/17/03
- Previous message: Randall Hyde: "Re: Evolution"
- In reply to: hutch--: "Evolution"
- Next in thread: hutch--: "Re: Evolution"
- Reply: hutch--: "Re: Evolution"
- Reply: Randall Hyde: "Re: Evolution"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: 17 Nov 2003 17:02:28 GMT
hutch@movsd.com (hutch--) wrote in news:af910ce4.0311170459.3492c3a8
@posting.google.com:
> The evolution of assembler.
>
> The stone age
> -------------
> lea eax, buffer
> push eax
> call szLen
> mov slen, eax
>
>
> The bronze age
> --------------
> invoke szLen,ADDR buffer
> mov slen, eax
>
>
> The iron age
> ------------
> mov slen, FUNC(szLen,ADDR buffer)
>
> PS: Does Betov wonder why he is being laughed into oblivion ?
>
> Regards,
>
> hutch at movsd dot com
>
>
> The MASM age
> ------------
> mov slen, len(ADDR buffer)
Sorry, few time for playing the fool with a fucky one like
you, nevertheless... :
The RosAsm age
--------------
True Assembly:
> push StringBuffer | call GetLength | mov D$MyStringLength eax
or Macro-Assembly:
> call GetLength StringBuffer | mov D$MyStringLength eax
or HLL:
> D$MyStringLength = call GetLength StringBuffer
or even:
> D$MyStringLength = GetLength StringBuffer
No time to explain the details to guys who refuse facts
(Buzy at the real work).
Betov.
< http://betov.free.fr/RosAsm.html >
- Previous message: Randall Hyde: "Re: Evolution"
- In reply to: hutch--: "Evolution"
- Next in thread: hutch--: "Re: Evolution"
- Reply: hutch--: "Re: Evolution"
- Reply: Randall Hyde: "Re: Evolution"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]