Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

about asm

Status
Not open for further replies.

SonicChen

Programmer
Feb 14, 2004
62
CN
I'm reading some source code like system.pas of delphi
and find some asm statement. Where can i get the knowledge about delphi assembly code.
example:
Code:
        PUSH    EBX
        PUSH    ESI
        PUSH    EDI
        MOV     EDI,ECX
        XOR     EBX,EBX
        XOR     ECX,ECX
        JMP     @@haveVMT
i know it's some register manipulation. but i never heard these registers and some of the directives.

way to gold shines more than gold
 
this is simple assembly language called BASM (borland assembler), while it has not all the features of a full fledged assembler compiler like MASM (M$ asm) or TASM (turbo assembler from borland), it shares for 95% the same syntax. for more info about the instructions, take an intel i386 cpu manual and you'll find all the info there.

--------------------------------------
What You See Is What You Get
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top