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.
13 lines
238 B
13 lines
238 B
3 years ago
|
/*
|
||
|
* Below is the given application for lab2_1.
|
||
|
* This app runs in its own address space, in contrast with in direct mapping.
|
||
|
*/
|
||
|
|
||
|
#include "user_lib.h"
|
||
|
#include "util/types.h"
|
||
|
|
||
|
int main(void) {
|
||
|
printu("Hello world!\n");
|
||
|
exit(0);
|
||
|
}
|