diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2013-09-02 20:48:46 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2013-09-02 20:48:46 -0400 |
commit | 5d369d8d9eb5326db111cc2e518c74739dbe3f84 (patch) | |
tree | 1fe04c2372e2041c5feb7e6c177a25f692cf4e76 /src/romlayout.S | |
parent | 3cb0f504a782c1a9c790b939631854473c039397 (diff) | |
download | seabios-5d369d8d9eb5326db111cc2e518c74739dbe3f84.tar.gz |
Move code centered around specific hardware devices to src/hw/
Move many C files from the src/ directory to the new src/hw/ directory.
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 291b7980..cc97f9a9 100644 --- a/src/romlayout.S +++ b/src/romlayout.S @@ -8,7 +8,7 @@ #include "config.h" // CONFIG_* #include "ioport.h" // PORT_A20 #include "bregs.h" // CR0_* -#include "cmos.h" // CMOS_RESET_CODE +#include "hw/cmos.h" // CMOS_RESET_CODE #include "asm-offsets.h" // BREGS_* #include "entryfuncs.S" // ENTRY_* |