annotate sources/native/src/hello.cpp @ 680:924527b0b454

Fix ppc bios, this is the one from qemu svn 6657.
author Rob Landley <rob@landley.net>
date Mon, 30 Mar 2009 04:50:02 -0500
parents 87ab57007bb3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
448
87ab57007bb3 Add a C++ hello world program.
Rob Landley <rob@landley.net>
parents:
diff changeset
1 #include <iostream>
87ab57007bb3 Add a C++ hello world program.
Rob Landley <rob@landley.net>
parents:
diff changeset
2 using namespace std;
87ab57007bb3 Add a C++ hello world program.
Rob Landley <rob@landley.net>
parents:
diff changeset
3
87ab57007bb3 Add a C++ hello world program.
Rob Landley <rob@landley.net>
parents:
diff changeset
4 int main()
87ab57007bb3 Add a C++ hello world program.
Rob Landley <rob@landley.net>
parents:
diff changeset
5 {
87ab57007bb3 Add a C++ hello world program.
Rob Landley <rob@landley.net>
parents:
diff changeset
6 cout << "hello world" << endl;
87ab57007bb3 Add a C++ hello world program.
Rob Landley <rob@landley.net>
parents:
diff changeset
7 return 0;
87ab57007bb3 Add a C++ hello world program.
Rob Landley <rob@landley.net>
parents:
diff changeset
8 }