PDA

View Full Version : I love asm...


UnknownStranger
05-02-2003, 07:55 AM
I just love it... B)

It gives you direct controll over the controll flow, and lets you do stuff, which you didn't even think about... :eek:

Of course it's insane programming large programms in ASM, but I'm talking about little apps, or single functions, to either gain a nice performance increase,
or to do stuff, which you simply are not able to do in other languages...

So, what do you think? ;)

anubis
05-02-2003, 08:55 AM
hm, i like it too but you have to be good to beat modern compiler's optimizations...

baldurk
05-02-2003, 11:14 AM
it's also useful when other languages aren't available.

CyraX
05-05-2003, 08:15 AM
Have you seen the Assembly output(read: junk) that dear VC++ produces; YUCK!!!
Assembly rulez - however Intel Compilers are making life difficult.
Still there is nothing like what a man can do - optimizing using a compiler is always a shortcut.

Phaetos
05-17-2003, 02:25 PM
I used to like asm, too. It was the second language I learned after Basic on my C64 *g*.
Yes, I am a bit old (30 Years now). I really liked Assembler back on the Amiga as it was
nearly as easy as Basic but much faster :lol:

Today I don't use assembler anymore as I noticed that the extra time I spend in
optimize algorithms is better than to need the same time to implement a
somewhat slower algorithm im assembler.......

baldurk
05-18-2003, 02:41 AM
lol. Phaetos, you're nearly dead.

Man, the amigas were the greatest. I never got into coding on them (I was too young) but I've still got my 500+.

Ed Mack
07-15-2003, 08:30 PM
Aww, I had a 500+, it was my lovechild :D I sat and made strange things in BASIC all day long, it was great fun. At that time I had no real idea how much programming could do, but was able to make use of the joystick and the circle drawer :) I miss it now come to think of it..

Now gcc + Flash make up my programming/scripting suppliment.

baldurk
07-21-2003, 03:55 PM
I'm going to be bringing my 500+ out of retirement soon, as an old friend is coming over and we have fond memories of playing on it as a child.

robirt
07-21-2003, 06:14 PM
What is a good book or Online resource for learning ASM??

UnknownStranger
07-22-2003, 12:58 AM
www.google.com ;)

davepermen
07-22-2003, 03:48 AM
i'm just starting to let asm get a revieval (spelling?) for my engine, all gets written now in sse simd.. hehe:D its fun

UnknownStranger
07-22-2003, 05:39 AM
i'm just starting to let asm get a revieval (spelling?) for my engine, all gets written now in sse simd.. hehe:D its fun
:)

hanzac
07-26-2003, 04:44 AM
asm is second
algorithm is first

davepermen
07-26-2003, 04:56 AM
structure is first
savety is second
algorithm is third
asm is fourth

or some other between..

hanzac
07-26-2003, 04:59 AM
i think structure & security should be concerned with algorithm.

davepermen
07-26-2003, 05:04 AM
nope. algorithm is about how to solve a specific problem

structure is how to organize your algorithms so that they are manageable

and savety has to be done without relying on savety of the algorithm or the asm or what ever. your app should NEVER crash, no mather what your app consists of. that is doable (on a system that doesn't crash itself, meaning a WHQL certified win2000 system for example, or a linux system if you like that:D)

hanzac
07-26-2003, 05:12 AM
sometime before i didn't care about the algorithm,
i did care about the mechanical tips ...

so foolish , isn't it? :rolleyes:

davepermen
07-26-2003, 07:14 AM
hm.. hm? dunno..

i'm currently quite in a stress in knowing that i have to care about all those different levels.. algorithms that will fit to asm, have savety and be well structured..

MY BRAIN HURTS!!! :D

robirt
07-29-2003, 08:59 PM
Angel_of_Death: www.google.com

Thanksa lot. I'm sure google will provide a good opinion on which books are better than others. :P I guess Ill just pick one and hope it's good...

UnknownStranger
07-29-2003, 10:43 PM
Well robirt, google is one of the online ressources you asked for... ;)

Well, I don't know any books about asm, but maybe somebody else does...?

DrunkenCoder
07-30-2003, 12:01 AM
just google for "Art of Assembly language" it's a free bok availble online, just print it out at school or something 'cuz it weights in at ~1200pages if memory serves me right.

davepermen
07-30-2003, 12:24 AM
there are quite some documents on intels and amds homepage concerning their assembler instructions, how fast wich one is, what they do, and how you can write optimal code..

DrunkenCoder
07-30-2003, 01:02 AM
The Intel manuals can be found here (http://www.intel.com/design/pentium4/manuals/) they're good refrence material but I suggest getting some tutorials or a book to get you started.