Changeset b27a97b in mainline for init/init.c
- Timestamp:
- 2006-05-31T15:41:19Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c0e674a
- Parents:
- 440cff5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
init/init.c
r440cff5 rb27a97b 416 416 } 417 417 418 static void test_console(void) 419 { 420 int c; 421 422 while ((c = getchar()) != EOF) 423 putchar(c); 424 } 425 426 418 427 int main(int argc, char *argv[]) 419 428 { … … 423 432 // version_print(); 424 433 434 printf("Hello\nThis is Init\n"); 435 425 436 // test_printf(); 426 437 // test_printf2(); … … 437 448 // test_async_kbd(); 438 449 // test_fb(); 439 440 printf("Hello\nThis is Init\n\nBye."); 441 450 test_console(); 451 452 printf("\nBye.\n"); 442 453 443 454 /*
Note:
See TracChangeset
for help on using the changeset viewer.