Skip to content

Commit a562ba9

Browse files
authored
Merge pull request #185 from vinc/fix-compilation-warnings
Fix compilation warnings on v0.9 branch
2 parents 861a49c + c96e1fb commit a562ba9

File tree

7 files changed

+2
-8
lines changed

7 files changed

+2
-8
lines changed

src/e820.s

Lines changed: 0 additions & 1 deletion
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/stage_1.s

Lines changed: 0 additions & 1 deletion
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/stage_2.s

Lines changed: 0 additions & 1 deletion
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/stage_3.s

Lines changed: 0 additions & 1 deletion
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/video_mode/vga_320x200.s

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
.section .boot, "awx"
2-
.intel_syntax noprefix
32
.code16
43

54
config_video_mode:

src/video_mode/vga_text_80x25.s

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
.section .boot, "awx"
2-
.intel_syntax noprefix
32
.code16
43

54
config_video_mode:

x86_64-bootloader.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"os": "none",
1717
"features": "-mmx,-sse,+soft-float",
1818
"disable-redzone": true,
19-
"panic": "abort",
19+
"panic-strategy": "abort",
2020
"executables": true,
21-
"relocation_model": "static"
21+
"relocation-model": "static"
2222
}

0 commit comments

Comments
 (0)