Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 536 Bytes

README.md

File metadata and controls

19 lines (17 loc) · 536 Bytes

Xv6_Lua_Shell

Shell scripting in Xv6 OS with Lua 1.1

Main files of interest

  • three pdf's to get an idea how everything is overall
  • lua.c
    • combined lua files. Has interepter and all the core lua functions
  • scott.c
    • my test file to try out different things
  • exec.c
    • main kernal modifcation is here. Change how it loads a file with exec command
  • user.h
    • ulib.c has all the user level code, and all our c library functions we had to implement
  • makefile
    • See the changes required
  • param.h
  • fs.h
  • printf.c