go away spammer

Author Topic: machine language  (Read 4391 times)

0 Members and 1 Guest are viewing this topic.

Offline lkikTopic starter

  • Full Member
  • ***
  • Posts: 60
  • Helpful? 0
machine language
« on: March 27, 2008, 12:11:34 AM »
i was looking at this http://www.societyofrobots.com/microcontroller_tutorial.shtml
and down the botem it have an example of machine language
3A 10 51
E6 DF
32 38 00
is that just hexicdecimal

paulstreats

  • Guest
Re: machine language
« Reply #1 on: March 27, 2008, 04:25:34 AM »
It is just hexadecimal, but you have to know what each assembly command equates to to use it. Also you need to know which hex numbers are the program address and which are the commands

Offline benji

  • Supreme Robot
  • *****
  • Posts: 830
  • Helpful? 0
Re: machine language
« Reply #2 on: March 27, 2008, 08:24:01 AM »

yea it is just hexadecimal numbers.
the thing that your mcu operates by.
compilers do the job of turning your whatever language code into machine code(.hex).
you just have to download it into your mcu.

i see no reason why would someone get interested in machine language ....

dont tell me you wanna do machine coding  ;D
good ol' BeNNy

Offline lkikTopic starter

  • Full Member
  • ***
  • Posts: 60
  • Helpful? 0
Re: machine language
« Reply #3 on: March 27, 2008, 02:33:29 PM »
if it is just hexicdecimal i could probly try and program a mcu with it probly would not work lol 
i learnt it at schoool

Offline Maltaeron

  • Full Member
  • ***
  • Posts: 65
  • Helpful? 0
Re: machine language
« Reply #4 on: March 27, 2008, 03:20:26 PM »
I don't know what you've been learning at school, but chances are it wasn't AtMega8 assembly, especially not in hex. Even if you did learn it, I wouldn't recommend it for anything but enhancing specific parts of a C program. Compilers were made for a reason! A good one too!

As far as just programming from hex directly without a IDE, that would be just plain silly, if you want to do machine code, use assembly through AVR studio -- I think you can but am not sure --
However, after wasting enough time just figuring our the hex, it probably would work... just don't do it...  ;)

Offline benji

  • Supreme Robot
  • *****
  • Posts: 830
  • Helpful? 0
Re: machine language
« Reply #5 on: March 27, 2008, 03:26:25 PM »
it is totaly insane to do machine coding,, come one buddy,, wake up
good ol' BeNNy

Offline airman00

  • Contest Winner
  • Supreme Robot
  • ****
  • Posts: 3,650
  • Helpful? 21
  • narobo.com
    • Narobo.com - Mechatronics and related
Re: machine language
« Reply #6 on: March 27, 2008, 05:44:59 PM »
it is totaly insane to do machine coding,, come one buddy,, wake up

but has anyone actually done it?
Check out the Roboduino, Arduino-compatible board!


Link: http://curiousinventor.com/kits/roboduino

www.Narobo.com

paulstreats

  • Guest
Re: machine language
« Reply #7 on: March 27, 2008, 06:33:32 PM »
Yes. Back in the day when home computers were just starting, most of them could be programmed in basic, but if you wanted to do something advanced or speed up a program then you had to do it in machine code.

Also dont forget the people who make the programming languages need to know the lower level stuff in order to get the translations correct.

Rather than look into hex etc... why not learn assembly? that is as low as you can go and still retain any normal understanding as to whats going on

Offline airman00

  • Contest Winner
  • Supreme Robot
  • ****
  • Posts: 3,650
  • Helpful? 21
  • narobo.com
    • Narobo.com - Mechatronics and related
Re: machine language
« Reply #8 on: March 27, 2008, 08:19:41 PM »
yep assembly was my first language on a microcontroller

reason being was that I used a PIC and assembly language was the only language that didn't cost extra for a compiler i knew of

i despise assembly

movlw hate
movwf Assembly_Language


lol   :D
Check out the Roboduino, Arduino-compatible board!


Link: http://curiousinventor.com/kits/roboduino

www.Narobo.com

Offline lkikTopic starter

  • Full Member
  • ***
  • Posts: 60
  • Helpful? 0
Re: machine language
« Reply #9 on: March 27, 2008, 11:31:01 PM »
dont worry i dont plan on trying to do it
lol
that is just crazy it would take me for ever too do 
and it would probly be all rong any way
« Last Edit: March 27, 2008, 11:31:59 PM by lkik »

Offline benji

  • Supreme Robot
  • *****
  • Posts: 830
  • Helpful? 0
Re: machine language
« Reply #10 on: March 28, 2008, 02:47:59 AM »
old times they didnt write machine code as coding, they wrote assembly code but they were their own compilers.
i mean after you write your assembly code you turn it into machine code by yourself.,,,misery,,,, .
i think assembly is the greatest shot for a true beginner as you can understand how software/hardware work together.
good ol' BeNNy

Offline Asellith

  • Contest Winner
  • Supreme Robot
  • ****
  • Posts: 648
  • Helpful? 9
  • "I'm a leaf on the wind. Watch how I soar"
    • CorSec Engineering
Re: machine language
« Reply #11 on: March 28, 2008, 12:13:55 PM »
I took an entire class on assembly. It is a skill everyone should learn. It helps you understand how the processor does thing and why for instance float calculations take FOREVER. I enjoyed my time with the Intel 8080. The assembly to machine code translation isn't even that hard. I think i had a spreadsheet open that I used to format my code. Every assembly line corresponds directly to a machine code. You just have to match them up. Hmm now that I think about it with Excel and a little time I could even build macros that automatically matched the code with the hex numbers for you. I guess that would be your compiler. The project board we where using with the 8080 required that you entered everything by hand with a number pad and LED display. Typos get really annoying that way.
Jonathan Bowen
CorSec Engineering
www.corseceng.com

Offline airman00

  • Contest Winner
  • Supreme Robot
  • ****
  • Posts: 3,650
  • Helpful? 21
  • narobo.com
    • Narobo.com - Mechatronics and related
Re: machine language
« Reply #12 on: March 30, 2008, 05:21:05 PM »
I took an entire class on assembly. It is a skill everyone should learn. It helps you understand how the processor does thing and why for instance float calculations take FOREVER. I enjoyed my time with the Intel 8080. The assembly to machine code translation isn't even that hard. I think i had a spreadsheet open that I used to format my code. Every assembly line corresponds directly to a machine code. You just have to match them up. Hmm now that I think about it with Excel and a little time I could even build macros that automatically matched the code with the hex numbers for you. I guess that would be your compiler. The project board we where using with the 8080 required that you entered everything by hand with a number pad and LED display. Typos get really annoying that way.

I agree, it is useful but NOT necessary

Check out the Roboduino, Arduino-compatible board!


Link: http://curiousinventor.com/kits/roboduino

www.Narobo.com

 


Get Your Ad Here