INT 0E C - CPU-generated (80386+ native mode) - PAGE FAULT
Desc:	this interrupt is generated in protected and virtual-86 modes on
	  attempting to access a 4K memory page whose page table entry has
	  the "present" bit cleared
Notes:	used to implement virtual memory--when the page fault occurs, the
	  operating system can load the appropriate page from disk
	a protected-mode program written in the Flat memory model will often
	  generate this interrupt (typically reported as an ExceptionA signal by the CPU that some error condition has been encountered that it can not deal with without a program's intervention.  The most commonly encountered exceptions on Intel processors are Exceptions 12 and 13 (decimal, how Intel specifies exception numbers), which are stack and general problems, respectively.  Exception 13 is typically caused by a memory access which wraps from the end of a segment back to the beginning. #14 or
	  ExceptionA signal by the CPU that some error condition has been encountered that it can not deal with without a program's intervention.  The most commonly encountered exceptions on Intel processors are Exceptions 12 and 13 (decimal, how Intel specifies exception numbers), which are stack and general problems, respectively.  Exception 13 is typically caused by a memory access which wraps from the end of a segment back to the beginning. 0E with a register dump) when dereferencing an
	  uninitialized or corrupted pointer
SeeAlso: INT 0B"CPU(Central Processing Unit) The microprocessor which executes programs on your computer."