mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-11 16:00:50 -07:00
ioports: remove unused env parameter and compile only once
The CPU state parameter is not used, remove it and adjust callers. Now we can compile ioport.c once for all targets. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
5e520a7d50
commit
afcea8cbde
13 changed files with 69 additions and 75 deletions
12
ioport.c
12
ioport.c
|
|
@ -192,25 +192,25 @@ void isa_unassign_ioport(pio_addr_t start, int length)
|
|||
|
||||
/***********************************************************/
|
||||
|
||||
void cpu_outb(CPUState *env, pio_addr_t addr, uint8_t val)
|
||||
void cpu_outb(pio_addr_t addr, uint8_t val)
|
||||
{
|
||||
LOG_IOPORT("outb: %04"FMT_pioaddr" %02"PRIx8"\n", addr, val);
|
||||
ioport_write(0, addr, val);
|
||||
}
|
||||
|
||||
void cpu_outw(CPUState *env, pio_addr_t addr, uint16_t val)
|
||||
void cpu_outw(pio_addr_t addr, uint16_t val)
|
||||
{
|
||||
LOG_IOPORT("outw: %04"FMT_pioaddr" %04"PRIx16"\n", addr, val);
|
||||
ioport_write(1, addr, val);
|
||||
}
|
||||
|
||||
void cpu_outl(CPUState *env, pio_addr_t addr, uint32_t val)
|
||||
void cpu_outl(pio_addr_t addr, uint32_t val)
|
||||
{
|
||||
LOG_IOPORT("outl: %04"FMT_pioaddr" %08"PRIx32"\n", addr, val);
|
||||
ioport_write(2, addr, val);
|
||||
}
|
||||
|
||||
uint8_t cpu_inb(CPUState *env, pio_addr_t addr)
|
||||
uint8_t cpu_inb(pio_addr_t addr)
|
||||
{
|
||||
uint8_t val;
|
||||
val = ioport_read(0, addr);
|
||||
|
|
@ -218,7 +218,7 @@ uint8_t cpu_inb(CPUState *env, pio_addr_t addr)
|
|||
return val;
|
||||
}
|
||||
|
||||
uint16_t cpu_inw(CPUState *env, pio_addr_t addr)
|
||||
uint16_t cpu_inw(pio_addr_t addr)
|
||||
{
|
||||
uint16_t val;
|
||||
val = ioport_read(1, addr);
|
||||
|
|
@ -226,7 +226,7 @@ uint16_t cpu_inw(CPUState *env, pio_addr_t addr)
|
|||
return val;
|
||||
}
|
||||
|
||||
uint32_t cpu_inl(CPUState *env, pio_addr_t addr)
|
||||
uint32_t cpu_inl(pio_addr_t addr)
|
||||
{
|
||||
uint32_t val;
|
||||
val = ioport_read(2, addr);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue