fixed more missing functions

This commit is contained in:
Markus Fröschle
2013-12-29 23:44:09 +00:00
parent 7b4e8fa3a4
commit 14ac39a052
7 changed files with 5577 additions and 5598 deletions

View File

@@ -99,7 +99,7 @@ int run_bios_int(int num)
return 1;
}
static uint8_t inb(uint16_t port)
uint8_t inb(uint16_t port)
{
uint8_t val = 0;
@@ -113,7 +113,7 @@ static uint8_t inb(uint16_t port)
return val;
}
static uint16_t inw(uint16_t port)
uint16_t inw(uint16_t port)
{
uint16_t val = 0;
@@ -126,7 +126,7 @@ static uint16_t inw(uint16_t port)
return val;
}
static uint32_t inl(uint16_t port)
uint32_t inl(uint16_t port)
{
uint32_t val = 0;
if ((port >= offset_port) && (port <= offset_port+0xFF))