Assembly code to display "hello " ?

Recommended Answers

All 3 Replies

You're aware that this is the very first program anyone learning assembly will have to write, and it's ALWAYS provided in toto by the teaching resource (ie. book, website, or course notes), right?

So either you're lazy to the point that shocks even me, or you need to ask a more specific question.

     .global helloWorld
     .section ".data"

str: asciz "hello world!"

     .section ".text"

helloWorld:

     save %sp, -96, %sp

     set str, %o0

     call printf, 1
     nop

     ret
     restore

Which assembler and compiler do you use and do you want a 16 program or 32 bit?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.