1
0
mirror of https://github.com/sgmarz/osblog.git synced 2024-11-24 02:16:19 +04:00
osblog/risc_v/src/userspace/helloworld.cpp

9 lines
161 B
C++
Raw Normal View History

#include <printf.h>
#include <syscall.h>
int main()
{
printf("I'm a C++ program, and I'm running in user space. How about a big, Hello World\n");
return 0;
}