You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
307 B
18 lines
307 B
2 years ago
|
/*
|
||
|
* Below is the given application for lab1_1.
|
||
|
*
|
||
|
* You can build this app (as well as our PKE OS kernel) by command:
|
||
|
* $ make
|
||
|
*
|
||
|
* Or run this app (with the support from PKE OS kernel) by command:
|
||
|
* $ make run
|
||
|
*/
|
||
|
|
||
|
#include "user_lib.h"
|
||
|
|
||
|
int main(void) {
|
||
|
printu("Hello world!\n");
|
||
|
|
||
|
exit(0);
|
||
|
}
|