vote up 8 vote down star
5

Hi,

It would be great if someone could help..

flag
What kind of job, writing OS kernels? – David G Nov 7 at 23:07

5 Answers

vote up 12 vote down
$ cat > hwa.S
write = 0x04
exit  = 0xfc
.text
_start:
        movl    $1, %ebx
        lea     str, %ecx
        movl    $len, %edx
        movl    $write, %eax
        int     $0x80
        xorl    %ebx, %ebx
        movl    $exit, %eax
        int     $0x80
.data
str:    .ascii "Hello, world!\n"
len = . -str
.globl  _start
$ as -o hwa.o hwa.S
$ ld hwa.o
$ ./a.out
Hello, world!
link|flag
4  
Writes device drivers off the top of his head using only cat... – Don Nov 6 at 23:00
could you give an "assembly for dummies" explanation of the code? – Amro Nov 7 at 23:23
@Amro: sure, I've pasted a commented version to: pastie.org/688375 – DigitalRoss Nov 7 at 23:59
I have no idea if this would work, but if it does, it gets +1 for awesomeness, and if it doesn't, it gets +1 for chutzpah. – Bob Murphy Nov 8 at 0:18
vote up 7 vote down

Have a look at example 4 (won't win a prize for portability):

#include <syscall.h>

void syscall1(int num, int arg1)
{
  asm("int\t$0x80\n\t":
      /* output */    :
      /* input  */    "a"(num), "b"(arg1)
      /* clobbered */ );
}

void syscall3(int num, int arg1, int arg2, int arg3)
{
  asm("int\t$0x80\n\t" :
      /* output */     :
      /* input  */    "a"(num), "b"(arg1), "c"(arg2), "d"(arg3) 
      /* clobbered */ );
}

char str[] = "Hello, world!\n";

int _start()
{
  syscall3(SYS_write, 0, (int) str, sizeof(str)-1);
  syscall1(SYS_exit,  0);
}
link|flag
vote up 1 vote down

You'd have to talk to the OS directly. You could write to file descriptor 1, (stdout), by doing:

#include <unistd.h>

int main()
{
    write(1, "Hello World\n", 12);
}
link|flag
2  
And where do you believe "write" comes from? – Employed Russian Nov 7 at 6:59
vote up 1 vote down

What about a shell script? I didn't see any programming language requirement in the question.

echo "Hello World!"
link|flag
Even if echo(1) doesn't use the C standard library at all, I'm pretty sure there's an implicit "C" language here (or at least a compiled language). – Chris Lutz Nov 6 at 22:36
2  
The OP specified gcc compiler flags, which pretty much indicates that they had C in mind here – Charles Salvia Nov 6 at 22:56
vote up 1 vote down

How about writing it in pure assembly as in the example presented in the following link?

http://blog.var.cc/blog/archive/2004/11/10/hello_world_in_x86_assembly__programming_workshop.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.