Results 1 to 3 of 3

Thread: ASM Command list

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Aug 2000
    Location
    Texas
    Posts
    313

    Question

    Is their a place where I can find the list of commands for asm on the computer? Like just a list of every command and what does what?

  2. #2
    Addicted Member
    Join Date
    May 2000
    Posts
    240

    Smile Well...

    Depends on what you mean by commands...

    If you are talking about assembling a program..it depends on what assembler you have.. but if you are talking about the API commands, well they are all about the same..you just have too change a few things.. like this for example

    In Visual Basic you would call a MessageBox like so:

    Public Declare Function MessageBox Lib "user32" Alias "MessageBoxA" (ByVal hwnd As Long, ByVal lpText As String, ByVal lpCaption As String, ByVal wType As Long) As Long


    But in MASM (Microsoft assembler) you would call MessageBox like this:

    invoke MessageBox, NULL,addr MsgBoxText, addr MsgCaption, MB_OK

    It is about the same...only different syntax and code form.


    You can download MASM 6 from http://members.nbci.com/_XMCM/winasm/files/masm32v6.zip

    and it comes with a help file that shows you the correct syntax to use for assembling a program..

    you can also download TASM (Turbo assembler) from

    http://hackersclub.com/km/files/cfil...99/tasm5_1.zip

    http://hackersclub.com/km/files/cfil...99/tasm5_2.zip

    http://hackersclub.com/km/files/cfil...99/tasm5_3.zip

    there is three parts to it so download all thrre of them.






  3. #3
    Fanatic Member
    Join Date
    Jan 2003
    Posts
    1,004
    You could try NASM. It contains a help file of all of the instructions you can use including the number of clock cycles for each instruction.

    That is if you are using the 80x86 instruction set...
    "Can't" and "shouldn't" are two totally separate things.

    All questions should be answered. All answers should be true. That is why I post.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width