b138ac83b5
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@783 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
13 lines
137 B
C
13 lines
137 B
C
|
|
|
|
void main(void)
|
|
{
|
|
static const char msg[] = "hello world\r\n";
|
|
char *str;
|
|
char ch;
|
|
str = msg;
|
|
do {
|
|
ch = *str++;
|
|
} while(ch);
|
|
}
|