Browse Source

compiler.h is now always included on the command line.

tags/v0.9.3
Michael Brown 20 years ago
parent
commit
e44e5c7247

+ 0
- 1
src/arch/i386/firmware/pcbios/bios.c View File

5
 
5
 
6
 #include "stdint.h"
6
 #include "stdint.h"
7
 #include "realmode.h"
7
 #include "realmode.h"
8
-#include "compiler.h"
9
 
8
 
10
 #define BIOS_DATA_SEG 0x0040
9
 #define BIOS_DATA_SEG 0x0040
11
 
10
 

+ 0
- 1
src/arch/i386/firmware/pcbios/bios_console.c View File

3
  * Body of routines taken from old pcbios.S
3
  * Body of routines taken from old pcbios.S
4
  */
4
  */
5
 
5
 
6
-#include "compiler.h"
7
 #include "realmode.h"
6
 #include "realmode.h"
8
 #include "console.h"
7
 #include "console.h"
9
 
8
 

+ 0
- 1
src/arch/i386/include/io.h View File

1
 #ifndef	ETHERBOOT_IO_H
1
 #ifndef	ETHERBOOT_IO_H
2
 #define ETHERBOOT_IO_H
2
 #define ETHERBOOT_IO_H
3
 
3
 
4
-#include "compiler.h"
5
 #include "virtaddr.h"
4
 #include "virtaddr.h"
6
 
5
 
7
 /* virt_to_bus converts an addresss inside of etherboot [_start, _end]
6
 /* virt_to_bus converts an addresss inside of etherboot [_start, _end]

+ 0
- 1
src/arch/i386/include/realmode.h View File

4
 #ifndef ASSEMBLY
4
 #ifndef ASSEMBLY
5
 
5
 
6
 #include "stdint.h"
6
 #include "stdint.h"
7
-#include "compiler.h"
8
 #include "registers.h"
7
 #include "registers.h"
9
 #include "io.h"
8
 #include "io.h"
10
 
9
 

+ 0
- 1
src/arch/i386/include/registers.h View File

2
 #define REGISTERS_H
2
 #define REGISTERS_H
3
 
3
 
4
 #include "stdint.h"
4
 #include "stdint.h"
5
-#include "compiler.h"
6
 
5
 
7
 /* Basic 16-bit and 32-bit register types */
6
 /* Basic 16-bit and 32-bit register types */
8
 typedef union {
7
 typedef union {

+ 0
- 2
src/arch/i386/prefix/dskprefix.S View File

1
-#include "compiler.h"
2
-
3
 /* NOTE: this boot sector contains instructions that need at least an 80186.
1
 /* NOTE: this boot sector contains instructions that need at least an 80186.
4
  * Yes, as86 has a bug somewhere in the valid instruction set checks.
2
  * Yes, as86 has a bug somewhere in the valid instruction set checks.
5
  *
3
  *

Loading…
Cancel
Save