- Checking latest version of romcc
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@783 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
12
util/romcc/tests/simple_test9.c
Normal file
12
util/romcc/tests/simple_test9.c
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
|
||||
void main(void)
|
||||
{
|
||||
static const char msg[] = "hello world\r\n";
|
||||
char *str;
|
||||
char ch;
|
||||
str = msg;
|
||||
do {
|
||||
ch = *str++;
|
||||
} while(ch);
|
||||
}
|
Reference in New Issue
Block a user