Skip to content

Commit 2f0624d

Browse files
committed
Fix warnings about .intel_syntax attribute (it is now the default)
1 parent b823d76 commit 2f0624d

File tree

5 files changed

+0
-5
lines changed

5 files changed

+0
-5
lines changed

src/asm/e820.s

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
.section .boot, "awx"
2-
.intel_syntax noprefix
32
.code16
43

54
# From http://wiki.osdev.org/Detecting_Memory_(x86)#Getting_an_E820_Memory_Map

src/asm/stage_1.s

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.section .boot-first-stage, "awx"
22
.global _start
3-
.intel_syntax noprefix
43
.code16
54

65
# This stage initializes the stack, enables the A20 line, loads the rest of

src/asm/stage_2.s

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
.section .boot, "awx"
2-
.intel_syntax noprefix
32
.code16
43

54
# This stage sets the target operating mode, loads the kernel from disk,

src/asm/stage_3.s

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
.section .boot, "awx"
2-
.intel_syntax noprefix
32
.code32
43

54
# This stage performs some checks on the CPU (cpuid, long mode), sets up an

src/asm/vesa.s

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
# Copyright (c) 2017 Redox OS, licensed under MIT License
44

55
.section .boot, "awx"
6-
.intel_syntax noprefix
76
.code16
87

98
vesa:

0 commit comments

Comments
 (0)