pouët.net

Learn ASM - Beginners Tutorial

category: general [glöplog]
 
Demoscene outreach related:
http://www.xs4all.nl/~smit/asm01001.htm
I don't know these guys, but a good tut no the less.


added on the 2009-08-25 21:21:48 by BiasZ BiasZ
Hah, yeah, except that a tutorial on real-mode x86 assembly became obsolete nearly 15 years ago :T

It might've been useful today for those who want to start making 256B intros, but that tutorial seems far too generic for that purpose. Plus it looks like the example code is for TASM, which no one should be encouraged to use anymore ;P
added on the 2009-08-25 21:41:25 by mic mic
sorry but this is probably much more useful these days
http://www.drpaulcarter.com/pcasm/
took me one week to read through and code some shit, very well explained!
added on the 2009-08-25 21:46:52 by BarZoule BarZoule
What's wrong with TASM? :p
added on the 2009-08-25 21:48:15 by Preacher Preacher
better start with COBOL first
COBOL is too oldskool for a starter. :D
added on the 2009-08-25 22:38:20 by ham ham
yeah, better start with Fortran!
added on the 2009-08-25 22:56:34 by Alpha C Alpha C
I didn't know that COBOL and FORTRAN were associated with ASM
added on the 2009-08-25 23:15:02 by BiasZ BiasZ
BB Image
added on the 2009-08-25 23:22:13 by BiasZ BiasZ
As Gaffer would say: "FIST DWORD PTR [me]"..
added on the 2009-08-26 02:15:20 by trc_wm trc_wm
Code: .MODEL Small .STACK 100h .DATA msg db 'Hello, world!$' .CODE start: mov ah, 09h lea dx, msg int 21h mov ax,4C00h int 21h end start



How to use it:
http://en.wikipedia.org/wiki/Debug_(command)#Syntax
added on the 2009-08-26 04:01:15 by BiasZ BiasZ
never heard of debug, thx for the pointer!
added on the 2009-08-26 04:54:47 by BarZoule BarZoule
And it's even still available on Vista! :D
added on the 2009-08-26 05:45:33 by bdk bdk
yea looks like a good intro :)
still.. 16bits real mode.. arg :)
we're in 2009 ffs :P
added on the 2009-08-26 10:30:52 by nystep nystep

login