From 2f397f213fa86e0767fb518b0b027e55619e9a03 Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Thu, 27 Jan 2022 06:46:38 +0500 Subject: [PATCH] Remove unnecessary code --- src/x86_stage1.S | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/x86_stage1.S b/src/x86_stage1.S index d143b9c..4f88c66 100644 --- a/src/x86_stage1.S +++ b/src/x86_stage1.S @@ -22,12 +22,10 @@ #endif #define STACK_BASE 0x2000 -#define STAGE1_BASE 0x7c00 #define STAGE2_BASE 0x7e00 #define DIST(x) (x - _start) -#define STAGE1_ADDR(x) (DIST(x) + STAGE1_BASE) #define STAGE2_ADDR(x) (DIST(x) + STAGE2_BASE) .code16