_test.cpp 220 B

123456789101112
  1. #include "Userspace.cpp"
  2. using namespace Userspace;
  3. extern "C" int elf_entry()
  4. {
  5. int fd = open("/Banner.txt");
  6. char buf[2048];
  7. int nread = read(fd, buf, sizeof(buf));
  8. buf[nread] = '\0';
  9. return 0;
  10. }