Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon.

Pages: 1-

Assembly

Name: Anonymous 2009-02-20 23:44

does someone knows where can i find a assembly tutorial?

Name: Anonymous 2009-02-20 23:55

USE THE INTERNET

Name: Anonymous 2009-02-21 0:21

Google

Name: Anonymous 2009-02-21 0:36

Here's a tip.

Don't even try.

Name: Anonymous 2009-02-21 0:55

Don't listen to the fags here, assembly is all u need.

title Hello World Program
dosseg
.model small
.stack 100h
.data
hello_message db 'Hello, World!',0dh,0ah,'$'
.code
 main  proc
    mov    ax,@data
    mov    ds,ax
    mov    ah,9
    mov    dx,offset hello_message
    int    21h
    mov    ax,4C00h
    int    21h
main  endp
end   main

Name: Anonymous 2009-02-21 1:14

Name: Anonymous 2009-02-21 1:58

For x86 and x86_64:

Read the Intel Processor Manuals, this is the best that you can get.

For Win32:

Get Masm32, maybe read Iczelion's tutorials. Get MSDN, learn Win32 API.

Name: Anonymous 2009-02-21 2:43

Wikibooks has a shitload of assembly tutorials. Most of them aren't in-depth, but they'll give you a good place to start.

http://en.wikibooks.org/wiki/Subject:Assembly_Language

Concentrate on the architecture you use, but also see if you can glean information from other (simpler) systems.

Name: Anonymous 2009-02-21 3:05

>>7
The Intel manuals are free too, as in physical copies of them.

Name: Anonymous 2009-02-21 4:01

>>9
I actually have the intel manuals sitting next to me. The paper is newspaper quality, it really is quite bad. But then again, can't complain about free stuff.

Name: Anonymous 2009-02-21 5:23

>>10
I have Intel manuals from many years ago, they will survive.

Name: Anonymous 2009-02-21 6:50

Name: Anonymous 2009-02-21 13:36

>>9
But are they free as in freedom

Name: Anonymous 2011-02-02 23:08

Don't change these.
Name: Email:
Entire Thread Thread List