What is Assembler Language?

Discussion about hacker.org's server
Post Reply
WhiteKnight
Posts: 276
Joined: Fri Aug 15, 2008 8:21 am

What is Assembler Language?

Post by WhiteKnight »

I was researching about the assembler you guy were discussing about. I was interested and never were acknowledge about this language before.

What is the benefit compare to C++ and which is an up to date editor for it?

Which is an up to date editor?

Hopefully you guy can explain me the idea about this.

Please and thank you.
User avatar
Grand_Master
Posts: 81
Joined: Mon Aug 18, 2008 3:07 pm
Location: Sweden

Post by Grand_Master »

I don't know much, but I could share what I know.

Assembly is pretty different from C++, which is a high-level language.
Assembly is a real low-level language.
When you program in Assembly you do not write commands like cin or sizeof etc. You controll what data the CPU gets, and how it should devide it. You don't define variables, you controll what CPU-instructions should be stored in what adress.

If I understand everything right, this is a language, you can't really program in. The most central source of an OS needs to be programmed in Assembly (to get it to boot).
It could also be useful for some cracking of software.
But to make a project like a music player or a decrypter in this language would probably take years (and a great knowledge of how the system really works).

I've never used Assembly myself, please correct me if I'm wrong on a point or another.
"Learn, grow, teach."
WhiteKnight
Posts: 276
Joined: Fri Aug 15, 2008 8:21 am

Post by WhiteKnight »

Grand_Master wrote:I don't know much, but I could share what I know.

Assembly is pretty different from C++, which is a high-level language.
Assembly is a real low-level language.
When you program in Assembly you do not write commands like cin or sizeof etc. You controll what data the CPU gets, and how it should devide it. You don't define variables, you controll what CPU-instructions should be stored in what adress.

If I understand everything right, this is a language, you can't really program in. The most central source of an OS needs to be programmed in Assembly (to get it to boot).
It could also be useful for some cracking of software.
But to make a project like a music player or a decrypter in this language would probably take years (and a great knowledge of how the system really works).

I've never used Assembly myself, please correct me if I'm wrong on a point or another.
Ah I see!

Thank you for the information that I require!

Have a nice day, sir!
Post Reply