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.
http://www.xs4all.nl/~smit/asm01001.htm
I don't know these guys, but a good tut no the less.
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
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
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!
http://www.drpaulcarter.com/pcasm/
took me one week to read through and code some shit, very well explained!
What's wrong with TASM? :p
better start with COBOL first
COBOL is too oldskool for a starter. :D
yeah, better start with Fortran!
I didn't know that COBOL and FORTRAN were associated with ASM
As Gaffer would say: "FIST DWORD PTR [me]"..
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
never heard of debug, thx for the pointer!
And it's even still available on Vista! :D
yea looks like a good intro :)
still.. 16bits real mode.. arg :)
we're in 2009 ffs :P
still.. 16bits real mode.. arg :)
we're in 2009 ffs :P