summaryrefslogtreecommitdiff
path: root/i386/i386/cpuboot.S
diff options
context:
space:
mode:
authorAlmuHS <almuhs@github.com>2019-04-21 18:50:56 +0200
committerAlmuHS <almuhs@github.com>2019-04-21 18:50:56 +0200
commit5be5ec9511f9c646639a41387af78b15e5a6e207 (patch)
tree4883993c315abba63fc592fb53cc629f6bd868cb /i386/i386/cpuboot.S
parent57756f1a94f21a67047c0194d666c49851b646dc (diff)
removed useless lines
Diffstat (limited to 'i386/i386/cpuboot.S')
-rw-r--r--i386/i386/cpuboot.S4
1 files changed, 1 insertions, 3 deletions
diff --git a/i386/i386/cpuboot.S b/i386/i386/cpuboot.S
index 18f19ed2..f758c3cf 100644
--- a/i386/i386/cpuboot.S
+++ b/i386/i386/cpuboot.S
@@ -32,15 +32,13 @@ boot_gdt:
/* boot DS = 8 . Data segment*/
.word 0xffff /*Segment limit */
.word (-KERNELBASE) & 0xffff /*Base first 0-15 bits*/
- .byte ((-KERNELBASE) >> 16) & 0xff
+ .byte ((-KERNELBASE) >> 16) & 0xff
.byte 0x92 /*Access byte*/
.byte 0xcf /* High 4 bits */
.byte ((-KERNELBASE) >> 24) & 0xff /*Base 24-31 bits */
.bss
.p2align 4
- .globl stack_bsp
- .comm stack_bsp, STACK_SIZE
#define M(addr) (addr - apboot + 0x7000)