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?
Printable View
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?
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.
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...