Previous Thread
Next Thread
Print Thread
Page 162 of 536 1 2 160 161 162 163 164 535 536
Joined: Aug 2009
Posts: 671
Senior Member
Offline
Senior Member
Joined: Aug 2009
Posts: 671
I get the following compile error with current svn 8415:

Code
Compiling src/mess/tools/messtest/testmess.c...
src/mess/tools/messtest/testmess.c: In function 'void command_trace(running_mach
ine*)':
src/mess/tools/messtest/testmess.c:955: error: 'debug_cpu_trace' was not declare
d in this scope
make: *** [obj/windows/mess/mess/tools/messtest/testmess.o] Error 1

(clean compiled)

Last edited by Kaylee; 07/07/10 05:01 AM.
Joined: Dec 2006
Posts: 534
M
Senior Member
Offline
Senior Member
M
Joined: Dec 2006
Posts: 534
Probably still needs updating to 0.138u3 specs. For now, don't compile the tools (ie: don't use make TARGET=mess all), rest should be fine.


- Barry Rodewald
Joined: Jul 2007
Posts: 4,625
A
Anna Wu Offline OP
Very Senior Member
OP Offline
Very Senior Member
A
Joined: Jul 2007
Posts: 4,625
A user post following :

Quote
cgc7900 : 210281 1.4 806k odd sum 611e.uf20 (4096 bytes) - INCORRECT CHECKSUM:
EXPECTED: CRC(00000000) SHA1(c018a23e6f2158e2d63723cade0a3ad737090921)
FOUND: CRC(8080aa2a)
romset cgc7900 is bad

Seems to be a typo, so something wrong to audit correct this rom.
CRC 00000000 can not be correct, CRC 8080aa2a is ok !

Edit: Found the typo.

mess\drivers\cgc7900.c

Quote
ROM_LOAD16_BYTE( "210281 1.4 806k odd sum 611e.uf20",
0x6001, 0x1000, CRC(I8080aa2a)
SHA1(c018a23e6f2158e2d63723cade0a3ad737090921) )

Need to changed > CRC(8080aa2a)

Last edited by Anna Wu; 07/07/10 08:48 AM.
Joined: Jan 2006
Posts: 3,691
Very Senior Member
Offline
Very Senior Member
Joined: Jan 2006
Posts: 3,691
blame Micko's search and replace :P

the 8080 CPU became I8080, but 8080 in crc should not have been changed wink

Joined: Jan 2006
Posts: 3,691
Very Senior Member
Offline
Very Senior Member
Joined: Jan 2006
Posts: 3,691
can anyone test tutor with a cart (not from softlist, which is still unsupported, but from usual loading procedure)?

it was working yesterday and it does not work here now...


EDIT: no, ok, it works. I just needed to clean compile the core code for cartridges after 8421 (the newly added flag mixed up load/unload functions in my build... meh...)

Joined: Jul 2007
Posts: 4,625
A
Anna Wu Offline OP
Very Senior Member
OP Offline
Very Senior Member
A
Joined: Jul 2007
Posts: 4,625
Originally Posted by etabeta78
can anyone test tutor with a cart (not from softlist, which is still unsupported, but from usual loading procedure)?

it was working yesterday and it does not work here now...


EDIT: no, ok, it works. I just needed to clean compile the core code for cartridges after 8421 (the newly added flag mixed up load/unload functions in my build... meh...)

Softlist is now working too.

Joined: Jan 2006
Posts: 3,691
Very Senior Member
Offline
Very Senior Member
Joined: Jan 2006
Posts: 3,691
yeah, I know, I added the necessary code shortly after the original code wink

thanks for testing, though!

Joined: Jul 2007
Posts: 4,625
A
Anna Wu Offline OP
Very Senior Member
OP Offline
Very Senior Member
A
Joined: Jul 2007
Posts: 4,625
SVN r8447

If I start the Wonderswan emulation with cartridge, I get a crash.

C:\Emulator\Mess\Mess SVN>mess wswan -cart "C:\Emulator\Wonderswan\Oswan\Games\Wonder Classic.wsc"

Quote
Image 'C:\Emulator\Wonderswan\Oswan\Games\Wonder Classic.wsc' was successfully loaded.

-----------------------------------------------------
Exception at EIP=77C178AC (not found): ACCESS VIOLATION
While attempting to read memory at 80000063
-----------------------------------------------------
EAX=80000063 EBX=00000000 ECX=80000063 EDX=0022F9E0
ESI=00249FB0 EDI=00247B70 EBP=0022FA70 ESP=0022FA24
-----------------------------------------------------
Stack crawl:
0022FA70: 77C178AC (strlen+0x000c)
0022FA90: 00F3D672 (not found)
0022FAD0: 00E87406 (not found)
0022FB60: 00E87F62 (not found)
0022FC20: 00E605BB (not found)
0022FD60: 00F4C20D (not found)
0022FEF0: 00987724 (not found)
0022FF30: 010E727E (not found)
0022FFC0: 004013D1 (not found)
0022FFF0: 7C817077 (RegisterWaitForInputIdle+0x0049)

C:\Emulator\Mess\Mess SVN>mess wscolor -cart "C:\Emulator\Wonderswan\Oswan\Games\Golden Axe.wsc"

Quote
Image 'C:\Emulator\Wonderswan\Oswan\Games\Golden Axe.wsc' was successfully loaded.

-----------------------------------------------------
Exception at EIP=77C178C0 (not found): ACCESS VIOLATION
While attempting to read memory at 80000000
-----------------------------------------------------
EAX=80000000 EBX=00000000 ECX=80000000 EDX=0022F9E0
ESI=00249FA8 EDI=00247B68 EBP=0022FA70 ESP=0022FA24
-----------------------------------------------------
Stack crawl:
0022FA70: 77C178C0 (strlen+0x0020)
0022FA90: 00F3D672 (not found)
0022FAD0: 00E87406 (not found)
0022FB60: 00E87F62 (not found)
0022FC20: 00E605BB (not found)
0022FD60: 00F4C20D (not found)
0022FEF0: 00987724 (not found)
0022FF30: 010E727E (not found)
0022FFC0: 004013D1 (not found)
0022FFF0: 7C817077 (RegisterWaitForInputIdle+0x0049)

It is not the software list/hash problem.

Last edited by Anna Wu; 07/08/10 02:55 PM.
Joined: Feb 2008
Posts: 326
M
Senior Member
Offline
Senior Member
M
Joined: Feb 2008
Posts: 326
Image device class changed (some things in H file) so you need to recompile in order to make it work.

Joined: Jul 2007
Posts: 4,625
A
Anna Wu Offline OP
Very Senior Member
OP Offline
Very Senior Member
A
Joined: Jul 2007
Posts: 4,625
Originally Posted by Micko
Image device class changed (some things in H file) so you need to recompile in order to make it work.

Bingo smile

Page 162 of 536 1 2 160 161 162 163 164 535 536

Link Copied to Clipboard
Who's Online Now
2 members (Heihachi_73, 1 invisible), 561 guests, and 1 robot.
Key: Admin, Global Mod, Mod
ShoutChat
Comment Guidelines: Do post respectful and insightful comments. Don't flame, hate, spam.
Forum Statistics
Forums9
Topics9,320
Posts121,930
Members5,074
Most Online1,283
Dec 21st, 2022
Our Sponsor
These forums are sponsored by Superior Solitaire, an ad-free card game collection for macOS and iOS. Download it today!

Superior Solitaire
Forum hosted by www.retrogamesformac.com