Viewing Issue Advanced Details
ID Category [?] Severity [?] Reproducibility Date Submitted Last Update
02475 Crash/Freeze Critical (emulator) Always Oct 4, 2008, 10:38 Oct 9, 2008, 07:17
Tester Firewave View Status Public Platform MAME (Self-compiled)
Assigned To Resolution Fixed OS
Status [?] Resolved Driver
Version 0.127u6 Fixed in Version 0.127u7 Build
Fixed in Git Commit Github Pull Request #
Summary 02475: kf10thep: Access Violation
Description -----------------------------------------------------
Exception at EIP=77BD7E23: ACCESS VIOLATION
While attempting to read memory at 00000000
-----------------------------------------------------
EAX=00200000 EBX=08B51F08 ECX=00080000 EDX=00000000
ESI=00000000 EDI=19941000 EBP=0022FD98 ESP=0022FD90
Steps To Reproduce
Additional Information
Github Commit
Flags
Regression Version > 0.127u4
Affected Sets / Systems kf10thep
Attached Files
 
Relationships
There are no relationship linked to this issue.
Notes
5
User avatar
No.02685
etabeta
Developer
Oct 4, 2008, 13:26
the problem seems to come from decrypt_kf10thep () which needs all the available memory in the system, producing the crash
User avatar
No.02700
couriersud
Developer
Oct 5, 2008, 21:31
The crash is due to the fact that NEO_BIOS_AUDIO_128K entry in the rom map is commented out.
User avatar
No.02701
Haze
Senior Tester
Oct 5, 2008, 22:16
looks like Johnboy can't decided which m1 it should use.
User avatar
No.02718
etabeta
Developer
Oct 7, 2008, 13:08
from johnboy:

In neodrvr.c goto line 6748 and replace 

ROM_REGION( 0x200000, "audio", 0 ) 

with this 

ROM_REGION( 0x200000, "audiocrypt", 0 ) 

Goto line 6753 and uncomment this 

//NEO_BIOS_AUDIO_128K( "5008-m1.rom", CRC(5a47d9ad) SHA1(0197737934653acc6c97221660d789e9914f3578) ) 

to 

NEO_BIOS_AUDIO_128K( "5008-m1.rom", CRC(5a47d9ad) SHA1(0197737934653acc6c97221660d789e9914f3578) ) 
User avatar
No.02723
aaron
Developer
Oct 9, 2008, 07:17
By JohnBoy