From a33bf9c889ebdea6057c8d02bcc4e2b6fc2cbf67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klemen=20Ko=C5=A1ir?= Date: Sat, 20 Aug 2016 13:02:41 +0200 Subject: [PATCH] Fix a function name typo --- blog/post/2015-08-25-entering-longmode.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blog/post/2015-08-25-entering-longmode.md b/blog/post/2015-08-25-entering-longmode.md index 9cc9c732..1abb7ae4 100644 --- a/blog/post/2015-08-25-entering-longmode.md +++ b/blog/post/2015-08-25-entering-longmode.md @@ -184,11 +184,11 @@ If you look at the assembly above, you'll probably notice that we call `cpuid` t We just call these check functions right after start: ```nasm -global _start +global start section .text bits 32 -_start: +start: mov esp, stack_top call check_multiboot