diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2013-09-14 13:01:30 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2013-09-18 20:48:34 -0400 |
commit | b9c6a960808451d75acd9c048f418dd2c92ac59d (patch) | |
tree | 7b7cd650fae1418f6284fc7579762cf832c17fdf /src/romlayout.S | |
parent | 490797e851af64481a998b80072554b75009483c (diff) | |
download | seabios-b9c6a960808451d75acd9c048f418dd2c92ac59d.tar.gz |
Split x86 specific functions out of util.c/h to new files x86.c/h.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/romlayout.S')
-rw-r--r-- | src/romlayout.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/romlayout.S b/src/romlayout.S index cc97f9a9..17904ae1 100644 --- a/src/romlayout.S +++ b/src/romlayout.S @@ -7,7 +7,7 @@ #include "config.h" // CONFIG_* #include "ioport.h" // PORT_A20 -#include "bregs.h" // CR0_* +#include "x86.h" // CR0_* #include "hw/cmos.h" // CMOS_RESET_CODE #include "asm-offsets.h" // BREGS_* #include "entryfuncs.S" // ENTRY_* |