From: Peter Dinda Date: Mon, 23 Jun 2008 17:14:08 +0000 (+0000) Subject: Fixed the FS/GS save/restore problem X-Git-Tag: boot386puppy-26-to-ide~19 X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=commitdiff_plain;h=c1bcd8f9df03004c9ffdc9ab79a64cb354441801 Fixed the FS/GS save/restore problem Added PCI Added Out/In_DWord --- diff --git a/palacios/include/geekos/io.h b/palacios/include/geekos/io.h index bd23614..230300b 100644 --- a/palacios/include/geekos/io.h +++ b/palacios/include/geekos/io.h @@ -1,7 +1,7 @@ /* * x86 port IO routines * Copyright (c) 2001, David H. Hovemeyer - * $Revision: 1.1 $ + * $Revision: 1.2 $ * * This is free software. You are permitted to use, * redistribute, and modify it as specified in the file "COPYING". @@ -18,6 +18,9 @@ uchar_t In_Byte(ushort_t port); void Out_Word(ushort_t port, ushort_t value); ushort_t In_Word(ushort_t port); +void Out_DWord(ushort_t port, uint_t value); +uint_t In_DWord(ushort_t port); + void IO_Delay(void); #endif /* GEEKOS_IO_H */