IRIX emulation is here!
#40
RE: IRIX emulation is here!
Figured it out but it's a bit of a story:

Recently the naming of the romfiles have changed in MAME with respect to the Indigo2 and Indy emulation. For Indy emulation you now need rom with name indy_4610.zip and for indigo2 emulation you need indigo2_4415.zip
Also, PS2 keyboard and mouse support in the Indy and Indigo2 have been redesigned and need a rom now, these are kb_ms_natural.zip and ps2_keybc.zip
Also, the NVRAM save endianness has changed with respect to previous versions, so the MAC address needs to be swapped in pairs of two bytes.

So after compiling the MAME github source (i use make -j5 SOURCES=src/mame/drivers/indy_indigo2.cpp REGENIE=1 TOOLS=1 OPTIMIZE=2) you must run the Indigo2 emulation once with:
Code:
./mame64 indigo2_4415 -gio64_gfx xl24
If you go to the PROM and the the eaddr environment variable you will see that the MAC address has been set to FF:FF:FF:FF:FF:FF
Stop the emulation and read the eeprom from the just emulated indigo2:
Code:
xxd nvram/indigo2_4415/eeprom
The last line should read:
Code:
000000f0: 0000 ffff ffff ffff ffff ffff ffff ffff  ................
You can now hexedit the new MAC address:
Code:
hexedit nvram/indigo2_4415/eeprom
Change it to:
Code:
000000f0: 0000 ffff ffff ffff 0000 0008 1269 5634  .............iV4

Restart the Indigo2 Emulation and printenv should list eaddr as 08:00:69:12:34:56

As reported setenv -f eaddr 08:00:69:12:34:56 doesn't work. The PROM fill command described in the https://www.linux-mips.org/wiki/IP22#IP2...et_address page also doesn't work.

BTW, Anyone who wants to try out the latest MAME github, you can go to https://tudl1910.home.xs4all.nl/Indy_emulation/ and download the necessary roms
(This post was last modified: 06-07-2019, 07:36 PM by dexter1.)
dexter1
Administrator

Trade Count: (1)
Posts: 297
Threads: 17
Joined: May 2018
Location: The Netherlands
Find Reply
06-07-2019, 07:35 PM


Messages In This Thread
IRIX emulation is here! - by ginza - 02-27-2019, 09:58 PM
RE: IRIX emulation is here! - by Raion - 02-28-2019, 02:47 AM
RE: IRIX emulation is here! - by ginza - 02-28-2019, 07:35 PM
RE: IRIX emulation is here! - by dexter1 - 03-03-2019, 06:48 PM
RE: IRIX emulation is here! - by johnnym - 03-06-2019, 02:53 PM
RE: IRIX emulation is here! - by drcd - 03-04-2019, 01:19 PM
RE: IRIX emulation is here! - by shrek - 03-04-2019, 03:14 PM
RE: IRIX emulation is here! - by computron - 03-06-2019, 08:22 PM
RE: IRIX emulation is here! - by johnnym - 03-06-2019, 09:05 PM
RE: IRIX emulation is here! - by dexter1 - 03-06-2019, 10:22 PM
RE: IRIX emulation is here! - by dexter1 - 03-07-2019, 07:41 PM
RE: IRIX emulation is here! - by kubatyszko - 03-08-2019, 05:19 PM
RE: IRIX emulation is here! - by ginza - 03-08-2019, 06:54 AM
RE: IRIX emulation is here! - by dexter1 - 03-08-2019, 02:34 PM
RE: IRIX emulation is here! - by ginza - 03-08-2019, 07:48 PM
RE: IRIX emulation is here! - by dexter1 - 03-08-2019, 08:42 PM
RE: IRIX emulation is here! - by computron - 03-10-2019, 11:56 AM
RE: IRIX emulation is here! - by dexter1 - 03-13-2019, 08:50 PM
RE: IRIX emulation is here! - by thunderbird32 - 03-15-2019, 08:07 PM
RE: IRIX emulation is here! - by Raion - 03-16-2019, 03:57 AM
RE: IRIX emulation is here! - by ginza - 03-28-2019, 06:26 PM
RE: IRIX emulation is here! - by shrek - 04-03-2019, 05:52 PM
RE: IRIX emulation is here! - by Alex_n505x - 04-04-2019, 06:05 AM
RE: IRIX emulation is here! - by shrek - 04-04-2019, 10:12 PM
RE: IRIX emulation is here! - by hermyIrix - 04-04-2019, 08:15 PM
RE: IRIX emulation is here! - by Raion - 04-04-2019, 10:10 PM
RE: IRIX emulation is here! - by Alex_n505x - 04-04-2019, 10:28 PM
RE: IRIX emulation is here! - by dexter1 - 04-09-2019, 04:27 PM
RE: IRIX emulation is here! - by ginza - 04-09-2019, 07:25 PM
RE: IRIX emulation is here! - by computron - 04-10-2019, 07:49 PM
RE: IRIX emulation is here! - by shrek - 04-10-2019, 11:46 PM
RE: IRIX emulation is here! - by computron - 04-13-2019, 01:17 AM
RE: IRIX emulation is here! - by shrek - 04-13-2019, 01:48 PM
RE: IRIX emulation is here! - by dexter1 - 04-17-2019, 08:44 AM
RE: IRIX emulation is here! - by Raion - 04-19-2019, 07:01 AM
RE: IRIX emulation is here! - by shrek - 04-21-2019, 03:10 PM
RE: IRIX emulation is here! - by alexdedalus - 06-07-2019, 07:57 AM
RE: IRIX emulation is here! - by dexter1 - 06-07-2019, 04:10 PM
RE: IRIX emulation is here! - by dexter1 - 06-07-2019, 07:35 PM
RE: IRIX emulation is here! - by alexdedalus - 06-07-2019, 09:06 PM
RE: IRIX emulation is here! - by dexter1 - 06-08-2019, 09:13 AM
RE: IRIX emulation is here! - by dexter1 - 06-08-2019, 12:29 PM
RE: IRIX emulation is here! - by Raion - 06-08-2019, 02:09 PM
RE: IRIX emulation is here! - by shrek - 06-09-2019, 05:38 PM
RE: IRIX emulation is here! - by RodneyDavies - 08-25-2019, 03:46 AM
RE: IRIX emulation is here! - by shrek - 08-31-2019, 07:47 PM
RE: IRIX emulation is here! - by RodneyDavies - 09-01-2019, 03:17 PM
RE: IRIX emulation is here! - by shrek - 09-11-2019, 08:47 AM
RE: IRIX emulation is here! - by RodneyDavies - 09-20-2019, 01:57 PM
RE: IRIX emulation is here! - by TriOx - 08-26-2019, 04:39 AM
RE: IRIX emulation is here! - by Raion - 09-01-2019, 03:28 PM
RE: IRIX emulation is here! - by trekiej - 09-13-2019, 05:01 AM
RE: IRIX emulation is here! - by kirikoo - 09-20-2019, 02:49 PM
RE: IRIX emulation is here! - by RodneyDavies - 09-20-2019, 10:38 PM
RE: IRIX emulation is here! - by DeathEngine2 - 09-21-2019, 05:05 PM
RE: IRIX emulation is here! - by RodneyDavies - 09-22-2019, 02:22 AM
RE: IRIX emulation is here! - by Raion - 09-22-2019, 04:06 PM
RE: IRIX emulation is here! - by lukepowo - 09-25-2019, 07:08 PM
RE: IRIX emulation is here! - by shrek - 09-25-2019, 10:00 PM
RE: IRIX emulation is here! - by lukepowo - 09-26-2019, 02:56 PM
RE: IRIX emulation is here! - by kirikoo - 10-08-2019, 02:12 PM
RE: IRIX emulation is here! - by lukepowo - 10-08-2019, 11:14 PM
RE: IRIX emulation is here! - by Raion - 10-09-2019, 12:41 AM
RE: IRIX emulation is here! - by Raion - 10-15-2019, 12:03 AM
RE: IRIX emulation is here! - by RodneyDavies - 10-15-2019, 09:31 AM
RE: IRIX emulation is here! - by Raion - 10-15-2019, 03:57 PM
RE: IRIX emulation is here! - by shrek - 11-06-2019, 09:07 PM
RE: IRIX emulation is here! - by Raion - 11-06-2019, 09:39 PM
RE: IRIX emulation is here! - by alexdedalus - 11-10-2019, 04:52 AM
RE: IRIX emulation is here! - by shrek - 11-10-2019, 06:09 AM
RE: IRIX emulation is here! - by lukepowo - 11-12-2019, 04:17 PM
RE: IRIX emulation is here! - by Raion - 01-01-2020, 09:43 PM
RE: IRIX emulation is here! - by Raion - 01-29-2020, 07:29 PM
Echo in sound - by alexdedalus - 03-12-2020, 05:00 AM
RE: IRIX emulation is here! - by shrek - 03-12-2020, 10:36 AM
RE: IRIX emulation is here! - by DongMK - 03-12-2020, 02:12 PM
RE: IRIX emulation is here! - by Raion - 03-12-2020, 06:48 PM
RE: IRIX emulation is here! - by DongMK - 03-13-2020, 10:34 AM
RE: IRIX emulation is here! - by shrek - 03-25-2020, 01:51 PM
RE: IRIX emulation is here! - by InactiveUser45 - 04-24-2020, 07:23 PM
RE: IRIX emulation is here! - by InactiveUser45 - 05-03-2020, 05:34 PM
RE: IRIX emulation is here! - by Raion - 03-13-2020, 04:00 PM
RE: IRIX emulation is here! - by alexdedalus - 03-22-2020, 03:50 AM
RE: IRIX emulation is here! - by Raion - 03-22-2020, 04:58 AM
RE: IRIX emulation is here! - by alexdedalus - 03-24-2020, 01:20 AM
RE: IRIX emulation is here! - by Raion - 03-24-2020, 02:43 AM
RE: IRIX emulation is here! - by kirikoo - 03-30-2020, 02:21 PM
RE: IRIX emulation is here! - by Raion - 03-31-2020, 05:23 AM
RE: IRIX emulation is here! - by alexdedalus - 04-06-2020, 04:20 AM
RE: IRIX emulation is here! - by kirikoo - 04-06-2020, 05:56 PM
RE: IRIX emulation is here! - by Raion - 04-24-2020, 09:30 PM
RE: IRIX emulation is here! - by InactiveUser45 - 04-25-2020, 10:16 AM
RE: IRIX emulation is here! - by Raion - 04-26-2020, 11:41 PM
RE: IRIX emulation is here! - by InactiveUser45 - 04-28-2020, 06:37 PM
RE: IRIX emulation is here! - by tallen - 04-29-2020, 07:40 AM
RE: IRIX emulation is here! - by Raion - 04-29-2020, 08:45 AM
RE: IRIX emulation is here! - by jan-jaap - 04-29-2020, 09:48 AM
RE: IRIX emulation is here! - by shrek - 05-06-2020, 10:17 PM
RE: IRIX emulation is here! - by InactiveUser45 - 05-09-2020, 01:53 PM
RE: IRIX emulation is here! - by Intuition - 05-09-2020, 05:44 PM
RE: IRIX emulation is here! - by InactiveUser45 - 05-09-2020, 06:19 PM
RE: IRIX emulation is here! - by shrek - 05-12-2020, 08:39 AM
RE: IRIX emulation is here! - by Intuition - 05-11-2020, 10:22 AM
RE: IRIX emulation is here! - by InactiveUser45 - 05-11-2020, 12:04 PM
RE: IRIX emulation is here! - by dukzcry - 05-13-2020, 11:14 AM
RE: IRIX emulation is here! - by InactiveUser45 - 05-22-2020, 05:24 PM
RE: IRIX emulation is here! - by dukzcry - 05-14-2020, 04:55 AM
RE: IRIX emulation is here! - by shrek - 05-21-2020, 03:33 PM
RE: IRIX emulation is here! - by InactiveUser45 - 05-24-2020, 01:28 PM
RE: IRIX emulation is here! - by alexdedalus - 05-25-2020, 08:42 PM
RE: IRIX emulation is here! - by InactiveUser45 - 05-26-2020, 12:04 PM
RE: IRIX emulation is here! - by InactiveUser45 - 05-30-2020, 11:54 AM
RE: IRIX emulation is here! - by Raion - 05-26-2020, 06:30 PM
RE: IRIX emulation is here! - by InactiveUser45 - 05-26-2020, 07:10 PM
RE: IRIX emulation is here! - by Raion - 05-26-2020, 07:14 PM
RE: IRIX emulation is here! - by shrek - 06-01-2020, 08:30 PM
RE: IRIX emulation is here! - by Raion - 07-24-2020, 07:00 PM
RE: IRIX emulation is here! - by Picto - 07-24-2020, 11:06 PM
RE: IRIX emulation is here! - by shrek - 07-26-2020, 02:54 AM
RE: IRIX emulation is here! - by InactiveUser45 - 08-07-2020, 02:40 PM
RE: IRIX emulation is here! - by shrek - 08-08-2020, 11:49 AM
RE: IRIX emulation is here! - by InactiveUser45 - 08-09-2020, 04:54 PM
RE: IRIX emulation is here! - by shrek - 08-10-2020, 10:25 AM
RE: IRIX emulation is here! - by InactiveUser45 - 08-10-2020, 02:58 PM
RE: IRIX emulation is here! - by 02girl - 08-11-2020, 01:53 PM
RE: IRIX emulation is here! - by shrek - 08-12-2020, 09:34 PM
RE: IRIX emulation is here! - by Raion - 08-11-2020, 04:23 PM
RE: IRIX emulation is here! - by 02girl - 08-13-2020, 06:33 AM
RE: IRIX emulation is here! - by shrek - 08-14-2020, 01:32 AM
RE: IRIX emulation is here! - by 02girl - 08-15-2020, 09:04 AM
RE: IRIX emulation is here! - by shrek - 08-15-2020, 10:27 PM
RE: IRIX emulation is here! - by ginza - 08-16-2020, 10:10 AM
RE: IRIX emulation is here! - by InactiveUser45 - 08-16-2020, 10:44 AM
RE: IRIX emulation is here! - by InactiveUser45 - 08-15-2020, 11:43 AM
RE: IRIX emulation is here! - by Hiraghm - 08-21-2020, 08:16 AM
RE: IRIX emulation is here! - by InactiveUser45 - 08-21-2020, 12:20 PM
RE: IRIX emulation is here! - by Hiraghm - 08-22-2020, 04:45 AM
RE: IRIX emulation is here! - by 02girl - 08-22-2020, 06:30 AM
RE: IRIX emulation is here! - by InactiveUser45 - 08-24-2020, 08:59 PM
RE: IRIX emulation is here! - by kirikoo - 08-29-2020, 04:51 PM
RE: IRIX emulation is here! - by Hiraghm - 08-30-2020, 03:06 AM
RE: IRIX emulation is here! - by clingbang - 08-30-2020, 11:34 AM
RE: IRIX emulation is here! - by InactiveUser45 - 08-30-2020, 05:56 PM
RE: IRIX emulation is here! - by clingbang - 08-30-2020, 08:27 PM
RE: IRIX emulation is here! - by InactiveUser45 - 09-01-2020, 10:21 PM
RE: IRIX emulation is here! - by clingbang - 08-31-2020, 04:40 PM
RE: IRIX emulation is here! - by InactiveUser45 - 08-31-2020, 05:51 PM
RE: IRIX emulation is here! - by clingbang - 08-31-2020, 10:37 PM
RE: IRIX emulation is here! - by kirikoo - 09-01-2020, 11:49 AM
RE: IRIX emulation is here! - by InactiveUser45 - 09-01-2020, 06:14 PM
RE: IRIX emulation is here! - by Raion - 09-03-2020, 05:24 AM
RE: IRIX emulation is here! - by InactiveUser45 - 09-11-2020, 06:06 PM
RE: IRIX emulation is here! - by Raion - 09-11-2020, 06:41 PM
RE: IRIX emulation is here! - by InactiveUser45 - 09-11-2020, 07:27 PM
RE: IRIX emulation is here! - by Raion - 09-11-2020, 07:52 PM
RE: IRIX emulation is here! - by sgi_tx - 09-18-2020, 05:48 AM
RE: IRIX emulation is here! - by Raion - 09-18-2020, 05:52 AM
RE: IRIX emulation is here! - by shrek - 09-18-2020, 08:42 AM
RE: IRIX emulation is here! - by Lady Serena Kitty - 09-18-2020, 08:27 PM
RE: IRIX emulation is here! - by Raion - 09-18-2020, 08:28 PM
RE: IRIX emulation is here! - by octaneirix6530 - 11-01-2020, 08:33 PM
RE: IRIX emulation is here! - by shrek - 11-04-2020, 01:26 PM
RE: IRIX emulation is here! - by octaneirix6530 - 11-04-2020, 02:15 PM
RE: IRIX emulation is here! - by octaneirix6530 - 11-04-2020, 05:17 PM
RE: IRIX emulation is here! - by MrKozlovDV - 12-02-2020, 04:30 PM
RE: IRIX emulation is here! - by InactiveUser45 - 12-09-2020, 02:27 PM
RE: IRIX emulation is here! - by overlogic2011 - 12-17-2020, 10:48 PM
RE: IRIX emulation is here! - by overlogic2011 - 12-20-2020, 02:59 AM
RE: IRIX emulation is here! - by GeekLucanis - 12-20-2020, 04:24 AM
RE: IRIX emulation is here! - by Raion - 12-20-2020, 05:56 AM
RE: IRIX emulation is here! - by alexdedalus - 12-21-2020, 02:45 AM
RE: IRIX emulation is here! - by Lady Serena Kitty - 01-02-2021, 03:42 PM
RE: IRIX emulation is here! - by alexdedalus - 12-21-2020, 04:03 AM
RE: IRIX emulation is here! - by overlogic2011 - 12-27-2020, 11:15 PM
RE: IRIX emulation is here! - by mamed - 01-02-2021, 03:28 PM
RE: IRIX emulation is here! - by mamed - 01-02-2021, 07:20 PM
RE: IRIX emulation is here! - by mamed - 01-02-2021, 10:15 PM
RE: IRIX emulation is here! - by mamed - 01-04-2021, 12:58 AM
RE: IRIX emulation is here! - by overlogic2011 - 01-04-2021, 05:02 PM
RE: IRIX emulation is here! - by Raion - 01-04-2021, 02:11 AM
RE: IRIX emulation is here! - by Raion - 01-04-2021, 05:20 PM
RE: IRIX emulation is here! - by MrWeedster - 02-18-2022, 06:29 AM
RE: IRIX emulation is here! - by Raion - 02-18-2022, 07:15 AM
RE: IRIX emulation is here! - by GameBreaker64 - 06-22-2022, 04:13 PM
RE: IRIX emulation is here! - by vishnu - 06-23-2022, 01:12 AM
RE: IRIX emulation is here! - by flygoat - 04-17-2023, 03:49 PM
RE: IRIX emulation is here! - by Artistic-Irix - 09-22-2024, 06:50 PM

Forum Jump:


Users browsing this thread: 6 Guest(s)