Welcome Guest ( Log In | Register)



 
Reply to this topicStart new topic
> Assembly Tutorial
neeki4444
post Aug 31 2004, 08:46 PM
Post #1


Newbie [Level 2]
**

Group: Members
Posts: 38
Joined: 31-August 04
Member No.: 967



Does any body know of any good assembly tutorials? I have basic understanding of programming in assembly under microsoft enviroment, however I want to learn more about the topic.
Go to the top of the page
 
+Quote Post
johnfound
post Sep 10 2004, 01:54 PM
Post #2


Newbie
*

Group: Members
Posts: 3
Joined: 10-September 04
Member No.: 1,064



Hi.
The main Win32 assembly tutorial is http://win32asm.cjb.net/ (Iczelion tutorials)
Actually these are tutorials that returned assembly language in the novadays application programing. Unfortunately, they use the microsoft assembler, that is little bit outdated now.
In the last years, a bunch of new assemblers grows and now there are several very serious communities of assembly programmers out there.

You can take a look at my favourite: "Flat assembler" aka FASM. It works on Windows, DOS, Linux, FreeBSD, MenuetOS, BeOS. It is fully assembly written, self compilable and portable. It compiles very fast (actually maybe FASM is fastest assembler in the world now). It optimize the code to make programs smaller:

The main site of FASM: http://flatassembler.net
The project FRESH: http://fresh.flatassembler.net - This is modern RAD IDE with built-in FASM compiler. Fully assembly written, self compilable. Now in pre-alpha stage, it already have a lot of features.
The site about assembly programming and tutorials for FASM: http://decard.net
The site of pelaillo about assembly programming: http://as.modshack.co.uk/
Main flat assembler message board: http://board.flatassembler.net

Regards
Go to the top of the page
 
+Quote Post
neeki4444
post Sep 10 2004, 03:28 PM
Post #3


Newbie [Level 2]
**

Group: Members
Posts: 38
Joined: 31-August 04
Member No.: 967



thankx johnfound, I will take a look at the website you gave me, and the compiler. I have taken an assembly course before but the whole coures was based on masam, the microsoft assembler. I really want to know how write a program that will work without an operating system as well, if you know how to do that please let me know

Thankx. cool.gif
Go to the top of the page
 
+Quote Post
Eric Straven
post Sep 10 2004, 04:55 PM
Post #4


Member [Level 1]
****

Group: Members
Posts: 69
Joined: 28-August 04
From: Toronto, Ontario, Canada...
Member No.: 918



This is sort of a stupid question but how do I integrate the MASM Assembler(ml.exe) that comes with Visual C++ .NET with it?? I really wanna use the Visual C++ IDE for the MASM thing and all my friends say that they can do it with VC++ .NET and I wanna compile with too plz help :S....
Go to the top of the page
 
+Quote Post
err
post Sep 24 2004, 09:01 AM
Post #5


Ordinary mAn
*******

Group: Members
Posts: 135
Joined: 3-September 04
From: ID
Member No.: 990



assembler?
its just remember me 10 yrs ago when 1st time i use it 4 microcontroller. i use motorola which is exreamly different than intel. dunno how far ist that tecnology til nowadays?
Go to the top of the page
 
+Quote Post
gep
post Sep 25 2004, 08:38 AM
Post #6


Newbie
*

Group: Members
Posts: 8
Joined: 25-September 04
Member No.: 1,262



QUOTE(err @ Sep 24 2004, 02:31 PM)
assembler?
its just remember me 10 yrs ago when 1st time i use it 4 microcontroller. i use motorola which is exreamly different than intel. dunno how far ist that tecnology til nowadays?

Assembler is good langueage when you need to make some HW things, i.e. bootstrap loader
Go to the top of the page
 
+Quote Post
eldeo
post Oct 10 2004, 01:31 PM
Post #7


Newbie [Level 1]
*

Group: Members
Posts: 19
Joined: 10-October 04
Member No.: 1,626



To learn about assembler I advise you this page:
http://www.csn.ul.ie/~darkstar/assembler/
If you want to write microchips look at this site:
http://www.avr-asm-tutorial.net/

--
eldeo
Go to the top of the page
 
+Quote Post
johnfound
post Jan 21 2005, 10:24 PM
Post #8


Newbie
*

Group: Members
Posts: 3
Joined: 10-September 04
Member No.: 1,064



QUOTE(gep @ Sep 25 2004, 02:08 PM)
Assembler is good langueage when you need to make some HW things, i.e. bootstrap loader
*



laugh.gif This information is really 10 years old now. In novadays, because of new advanced tools and libraryes, the assembler becomes very good language for applications writing as well (and HW drivers, OSes etc.). Actually, now the assembler beats many HLL's with its very high speed and small application size. The main problem of assembler programming - slow creation of the programs is already in past - now the assembly programming is almost as rapid as any HLL like VB, VC or Delphi. And the things becomes better and better.

Regards
Go to the top of the page
 
+Quote Post
Trap FeedBacker
post Jan 11 2008, 08:05 PM
Post #9


Guest Feedbacks
***************

Group: Members
Posts: 2,360
Joined: 21-September 07
Member No.: 50,369



Art of assembly by Randal Hayde is a great one.
It give detailed explanation (uses masm)
You may refer it

-aqeel
Go to the top of the page
 
+Quote Post
osknockout
post Mar 25 2008, 03:19 AM
Post #10


Super Member
*********

Group: Members
Posts: 380
Joined: 14-November 04
From: Elysium
Member No.: 2,280



Ugh... masm. Spare me the style and spare yourself (you, you silly reader) some time and use fasm or nasm. You know, stuff people use on more than one OS.