From 4ade523a9db32b2a0e3cdeec3413c52e463542c8 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Wed, 18 Sep 2013 21:41:48 -0400 Subject: Remove ioport.h; disperse its contents to other header files. Move the inb(), insb(), etc. code from ioport.h to x86.h. Move the PORT_* definitions to their appropriate hardware files. Signed-off-by: Kevin O'Connor --- src/romlayout.S | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/romlayout.S') diff --git a/src/romlayout.S b/src/romlayout.S index 3307f763..37a02644 100644 --- a/src/romlayout.S +++ b/src/romlayout.S @@ -5,12 +5,12 @@ // // This file may be distributed under the terms of the GNU LGPLv3 license. -#include "config.h" // CONFIG_* -#include "ioport.h" // PORT_A20 -#include "x86.h" // CR0_* -#include "hw/rtc.h" // CMOS_RESET_CODE #include "asm-offsets.h" // BREGS_* +#include "config.h" // CONFIG_* #include "entryfuncs.S" // ENTRY_* +#include "hw/ps2port.h" // PORT_A20 +#include "hw/rtc.h" // CMOS_RESET_CODE +#include "x86.h" // CR0_* /**************************************************************** -- cgit