mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
Get rid of _t suffix
Some not so obvious bits, slirp and Xen were left alone for the time being. Signed-off-by: malc <av1474@comtv.ru>
This commit is contained in:
parent
bc6291a1b9
commit
99a0949b72
316 changed files with 3325 additions and 3332 deletions
|
@ -23,37 +23,37 @@
|
|||
#include "qemu-common.h"
|
||||
#include "ioport.h"
|
||||
|
||||
void cpu_outb(pio_addr_t addr, uint8_t val)
|
||||
void cpu_outb(a_pio_addr addr, uint8_t val)
|
||||
{
|
||||
fprintf(stderr, "outb: port=0x%04"FMT_pioaddr", data=%02"PRIx8"\n",
|
||||
addr, val);
|
||||
}
|
||||
|
||||
void cpu_outw(pio_addr_t addr, uint16_t val)
|
||||
void cpu_outw(a_pio_addr addr, uint16_t val)
|
||||
{
|
||||
fprintf(stderr, "outw: port=0x%04"FMT_pioaddr", data=%04"PRIx16"\n",
|
||||
addr, val);
|
||||
}
|
||||
|
||||
void cpu_outl(pio_addr_t addr, uint32_t val)
|
||||
void cpu_outl(a_pio_addr addr, uint32_t val)
|
||||
{
|
||||
fprintf(stderr, "outl: port=0x%04"FMT_pioaddr", data=%08"PRIx32"\n",
|
||||
addr, val);
|
||||
}
|
||||
|
||||
uint8_t cpu_inb(pio_addr_t addr)
|
||||
uint8_t cpu_inb(a_pio_addr addr)
|
||||
{
|
||||
fprintf(stderr, "inb: port=0x%04"FMT_pioaddr"\n", addr);
|
||||
return 0;
|
||||
}
|
||||
|
||||
uint16_t cpu_inw(pio_addr_t addr)
|
||||
uint16_t cpu_inw(a_pio_addr addr)
|
||||
{
|
||||
fprintf(stderr, "inw: port=0x%04"FMT_pioaddr"\n", addr);
|
||||
return 0;
|
||||
}
|
||||
|
||||
uint32_t cpu_inl(pio_addr_t addr)
|
||||
uint32_t cpu_inl(a_pio_addr addr)
|
||||
{
|
||||
fprintf(stderr, "inl: port=0x%04"FMT_pioaddr"\n", addr);
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue