Commit 016a26d2cab94bb0858a42bd3299f6adbcbbb86f

Add another function to copy_page.asm
  
1; This function has been taken from JamesM's kernel development tutorials
1; This file is from JamesM's kernel development tutorials
22
33[GLOBAL copy_page_physical]
44
3232 popf ; Pop EFLAGS back.
3333 pop ebx ; Get the original value of EBX back.
3434 ret
35
36[GLOBAL read_eip]
37read_eip:
38 pop eax ; Get the return address
39 jmp eax ; Return. Can't use RET because return
40 ; address popped off the stack.