In this assignment, you'll make a typical modification to OS/161, which is to add a system call. You will implement: The hello system call should be added as system call number 40. Check that the ...
This system call is handled by having the kernel print Hello CSE4001! and a newline using the internal kprintf () function, i.e., this is the kernel version of printf () . You will need to understand ...