mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
Compile isa_mmio only once
Push TARGET_WORDS_BIGENDIAN dependency to board level. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
7161e5710b
commit
84108e128e
14 changed files with 96 additions and 36 deletions
|
@ -192,7 +192,12 @@ void mips_jazz_init (ram_addr_t ram_size,
|
|||
pcspk_init(pit);
|
||||
|
||||
/* ISA IO space at 0x90000000 */
|
||||
isa_mmio_init(0x90000000, 0x01000000);
|
||||
#ifdef TARGET_WORDS_BIGENDIAN
|
||||
isa_mmio_init(0x90000000, 0x01000000, 1);
|
||||
#else
|
||||
isa_mmio_init(0x90000000, 0x01000000, 0);
|
||||
#endif
|
||||
|
||||
isa_mem_base = 0x11000000;
|
||||
|
||||
/* Video card */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue