Question: What is the difference between Monolithic and Microkernel? state the advantages and disadvantages of both. In your own words describe what is the boot loader,
What is the difference between Monolithic and Microkernel? state the advantages and disadvantages of both.
In your own words describe what is the boot loader, boot sector, and what does the BIOS do at the start of the computer?
Consider the following Assembly code and answer the questions in the comment // Note: this is x86 32 bit (not 64 bit)
movl $0x41000000, %eax
movl $0x420000, %ebx
movl $0x4300, %ecx xor %ebx, %eax xor %ecx, %eax
1. What is the integer value in %eax? pushl %eax // move value of eax onto stack movl $0x04, %eax // syscall number for write into eax movl $0x01, %ebx // file descriptor for stdout into ebx movl %esp, %ecx // address of stack (what was in eax before) movl $0x04, %edx // number of bytes to write int $0x80 // syscall
// 2. What will be printed to the screen?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
