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.
riscv-pke/user/app_helloworld_no_lds.c

13 lines
238 B

/*
* 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);
}