From f79e2ae7f7a554ef31ceb46064e3a962dea78630 Mon Sep 17 00:00:00 2001 From: Amanda Rousseau Date: Mon, 13 Mar 2017 15:32:52 -0700 Subject: [PATCH] updating reference --- fundamentals2.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fundamentals2.md b/fundamentals2.md index fb8de6c..291794b 100644 --- a/fundamentals2.md +++ b/fundamentals2.md @@ -19,13 +19,13 @@ Typical windows programs are in the Portable Executable (PE) Format. It’s port In this workshop we will be focusing on user-mode applications. -### User-mode vs. Kernel Mode [1] ### +### User-mode vs. Kernel Mode [1][1] ### - In user-mode, an application starts a user-mode process which comes with its own private virtual address space and handle table - In kernel mode, applications share virtual address space. -[1](https://msdn.microsoft.com/en-us/windows/hardware/drivers/gettingstarted/user-mode-and-kernel-mode?f=255&MSPPError=-2147217396) +[1]: https://msdn.microsoft.com/en-us/windows/hardware/drivers/gettingstarted/user-mode-and-kernel-mode?f=255&MSPPError=-2147217396 This diagram shows the relationship of application components for user-mode and kernel-mode. ![alt text](https://securedorg.github.io/images/WindowsArch.png "Windows Architecture")