Evolution
From: hutch-- (hutch_at_movsd.com)
Date: 11/17/03
- Next message: drhowarddrfinedrhoward: "Re: Evolution"
- Previous message: Frank Kotler: "Re: Any C header -> INC converters (for nasm)"
- Next in thread: drhowarddrfinedrhoward: "Re: Evolution"
- Reply: drhowarddrfinedrhoward: "Re: Evolution"
- Reply: Betov: "Re: Evolution"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: 17 Nov 2003 04:59:10 -0800
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)
- Next message: drhowarddrfinedrhoward: "Re: Evolution"
- Previous message: Frank Kotler: "Re: Any C header -> INC converters (for nasm)"
- Next in thread: drhowarddrfinedrhoward: "Re: Evolution"
- Reply: drhowarddrfinedrhoward: "Re: Evolution"
- Reply: Betov: "Re: Evolution"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]