Binary code and files

JamesBart

New Member
i dont get what they are. can someone explain this to me in simple terms then i might get it. i just checked wikipedia but i dont really understand it. how do you make binary files? or write the code? :confused:
 
Ahh...good old ASM (Assembly).

Assembly is probably the lowest level (next to hardware level) computer language out there. ASM is not used very much any more by professional programmers that have moved on to languages like C++. But ASM and even the language C are great for coding hardware drivers, software that targets specific pieces of hardware, and even operating systems. The Linux kernel is an example of an operating system coding in C with some ASM at the core of the kernel...if that makes sense. Basically, ASM gives you complete control over the hardware. With that said, one can do massive amounts of damage if they are not careful about what they are doing :eek:.


Check out Wikipedia for a full explanation of the language: http://en.wikipedia.org/wiki/Assembly_language
 
Ahh...good old ASM (Assembly).

Assembly is probably the lowest level (next to hardware level) computer language out there. ASM is not used very much any more by professional programmers that have moved on to languages like C++. But ASM and even the language C are great for coding hardware drivers, software that targets specific pieces of hardware, and even operating systems. The Linux kernel is an example of an operating system coding in C with some ASM at the core of the kernel...if that makes sense. Basically, ASM gives you complete control over the hardware. With that said, one can do massive amounts of damage if they are not careful about what they are doing :eek:.


Check out Wikipedia for a full explanation of the language: http://en.wikipedia.org/wiki/Assembly_language

i get it now. thanks! :D
 
When I first did programming, I programmed in ASM. One of my finest moments was making a 3 dimensional rotating, multi-color cube that I could rotate in any direction with the keyboard. :P
 
ASM is kinda old so me (14) has never used it.
My uncle used it, he finds it easier than c++ and stuff.
 
If you ever learn assembly, you'll have no questions about the mysterious things that take place when your computer executes a program ;). I first taught myself ASM and then went on to C and C++ and I too find assembly to be very straight forward.
 
Thanks for that guys. im finally got what its all about and the coloured cube sounds wicked! i might have a lok ito some programming if i get the time and see what all of the fuss is about :-)
 
Back
Top