Search found 92 matches

by GManiac
Sun Aug 29, 2010 2:07 am
Forum: Demos
Topic: SMD music rips
Replies: 12
Views: 15410

I also made music rips in old 2005, this is finished one.
by GManiac
Fri Aug 27, 2010 8:21 am
Forum: Megadrive/Genesis
Topic: found a bug with Conquering the World III
Replies: 12
Views: 8994

I don't know what's problem, I played it using Gens 2.10 (special hack with Cheat Menu), but other Genses like Gens 11a CAN start this game too. I tested both
Conquering the World III (Ch-Simple).gen
and
Conquering the World III (Ch-Trad).gen
ROMS.
by GManiac
Thu Aug 26, 2010 8:20 pm
Forum: Megadrive/Genesis
Topic: found a bug with Conquering the World III
Replies: 12
Views: 8994

Strange. I beat this game on Gens 2.10 and didn't notice any bugs. The only one thing: after beating the game you see black screen with music playing. I hacked palette and get strange logo with fax number. Here's how to get it: Open ROM in hex-editor, go to address $62B6 write 22BCC0000000700F209A51...
by GManiac
Wed Jun 23, 2010 11:27 am
Forum: Megadrive/Genesis
Topic: Megadrive handheld, H&B, FusionCore...
Replies: 14
Views: 10622

KRIKzz made MD link via USB and joystick port. It has inbuilt USB-COM adapter, so you use it as COM port. I made many tests with this thing.
I've got maximum transfer speed of 81 KB/s.
He also told me about improvements of this idea.
by GManiac
Mon May 17, 2010 2:48 pm
Forum: Video Display Processor
Topic: 2-cell vertical scrolling + horizontal scrolling
Replies: 36
Views: 29314

You may also look at logo screen of Jungle Book and to effect of using "Black Box" in Shining in the Darkness.
by GManiac
Mon Mar 08, 2010 4:51 pm
Forum: Tools
Topic: aPLib decruncher for 68000
Replies: 48
Views: 67339

Well, of course I know that there are NO THE BEST compressors. Sometimes one is better, sometimes another. But one can be better more frequently. That's why we need complex criteria and take into account speed / size / RAM, etc. preview.bmp is not that case of data which you expect to decompress in ...
by GManiac
Mon Mar 08, 2010 4:28 pm
Forum: Tools
Topic: aPLib decruncher for 68000
Replies: 48
Views: 67339

Here are some tests: http://www.fileden.com/files/2009/4/23/2415345/aPLib_tests.rar I made get_bit routine faster, so it's better to use my unit. Also I add 2 preprocessors definitions. Size of unpacker is 212 bytes (Macros version). It's old version of get_bit. get_bit: subq.b #1,d5 bne.b still_bit...
by GManiac
Sun Mar 07, 2010 11:54 pm
Forum: Tools
Topic: aPLib decruncher for 68000
Replies: 48
Views: 67339

Hmm, it's interesting to compare such parameters of compressors like: Compression ratio / Size of unpacker (for 68000) / Speed (for 68000) / Used RAM / Used Registers. Competitors are, for example: RNC, aPLib, Hrust, BitBuster. I found only sources of BitBuster for z80/ARM. I have sources for RNC an...
by GManiac
Tue Nov 17, 2009 9:14 am
Forum: Blabla
Topic: Gens 32 Surrial
Replies: 29
Views: 19594

I've tested some instructions and here's what I got: clr.b d0 - 4 clr.w d0 - 4 clr.l d0 - 6 (Gens shows 8 cycles) move.b d0,(a0) - 8 clr.b (a0) - 12 So, CLR really takes longer time than MOVE. We can check if CLR performs dummy READ with use of serial autoincrementing port, for example, VDP. But I d...
by GManiac
Mon Nov 16, 2009 11:54 am
Forum: Blabla
Topic: Gens 32 Surrial
Replies: 29
Views: 19594

The catch is that they are not. Clr performs dummy read before it writes 0 What the ...? Developers' mistake? Normal CLR must not to make any "reads". Anyway, if it does, operation of CLR.B #0,RAM will take 4 cycles longer than it should without "read", so we can check this moment. ...Hmm, IIRC CLR...
by GManiac
Mon Nov 16, 2009 10:37 am
Forum: Blabla
Topic: Gens 32 Surrial
Replies: 29
Views: 19594

the S-Factor had all MOVE #0 replaced with CLRs and well you know what happens when you CLR on VDP :P Why so? I thought MOVE #0 and CLR are working internally the same way if you look from the side of MMU or RAM. I mean if you perform instruction: MOVE.B #0,Addr or CLR.B Addr then next steps are pe...
by GManiac
Thu Oct 29, 2009 12:35 pm
Forum: Video Display Processor
Topic: That wavy effect
Replies: 10
Views: 7860

VDP can scroll horizontally Planes of raster and even single lines, it has HSRAM for it. To make "veritcal sine" effect ("underwater") you should set VDP HScrolling mode to Single Lines and to write into HSRAM numbers which represents template of sine, for example: 0 1 2 3 4 4 5 5 5 5 4 4 3 2 1 0 -1...
by GManiac
Tue Sep 29, 2009 7:28 am
Forum: Tools
Topic: Disassembly
Replies: 12
Views: 12280

Here you are.
http://www.fileden.com/files/2009/4/23/ ... 5D.nlz.zip
Copy the whole string to get a link.
by GManiac
Mon Sep 28, 2009 10:22 am
Forum: Tools
Topic: Disassembly
Replies: 12
Views: 12280

As I understood from your 2 posts, you want to fully decompile specified game, right? It's good idea, but unfortunatelly it's very hard to implement. Also is there a debugger with a tracer in it where you can run the game for a while and then exit and it will say all the lines where it ran instructi...