Click to See Complete Forum and Search --> : Assembly Language


ahmike
03-28-2002, 09:07 AM
HI anybody know where to find Assembly language the code meaning...
for example like what : DEC,MOV,NOP,EQU,???

RangerBFK
03-28-2002, 10:13 AM
for what arch?

Sparky_D
03-28-2002, 10:54 AM
Originally posted by ahmike
HI anybody know where to find Assembly language the code meaning...
for example like what : DEC,MOV,NOP,EQU,???

Those are all VAX assembler specification, but they can vary from assembler to assembler. Which architecture are you referring to? x86 assembler, sParc assembler, MIPS assembler, etc. ?

biosx
03-28-2002, 02:33 PM
I've been trying to read up on ASM myself (for x86).

Here are some links to some useful tutorials/lectures:

Gavin's Guide to 80x86 Assembly (http://burks.brighton.ac.uk/burks/language/asm/asmtut/asm1.htm)
Some huge lecture (can be viewed HTML, pdf, etc) (http://courses.ece.uiuc.edu/ece291/lecture/)
Another lecture that gives the overview of ASM (in pdf format) (http://courses.ece.uiuc.edu/ece291/lecture/lecture2_6pps.pdf)
Really small, but good introduction tutorial on ASM (includes links to TASM) (http://www.axion-network.net/areas/tutorials/tutorial.php?id=2)

Good luck and have fun ;)