Search found 193 matches

by notaz
Wed Jun 25, 2014 11:32 am
Forum: UMDK
Topic: USB MegaDrive DevKit
Replies: 28
Views: 30947

Chilly Willy wrote:Oh, I see. Gaps in the CD address range may also be the best way to handle it.
AFAIK there are no gaps in CD address range, it's mirrored all over the place as upper address lines are simply not connected to expansion port..
by notaz
Mon Apr 07, 2014 12:17 pm
Forum: Cartridge
Topic: How does the cartridge slot get mapped to 0x400000?
Replies: 3
Views: 9508

It's controlled by /CART (B32) pin on the cart connector only, if it's connected to ground, cart's /CE (chip enable) signal will respond to 000000-3fffff, else to 400000-7fffff.
by notaz
Mon Dec 30, 2013 12:01 pm
Forum: Mega/SegaCD
Topic: Testing boot from CARTRIDGE SLOT at 0x400000
Replies: 14
Views: 22230

Yeah it's interesting boot mode where you can avoid having to start the CD/bios yourself and have it done for you, I guess?
by notaz
Sun Sep 01, 2013 9:03 pm
Forum: Mega/SegaCD
Topic: Problems with running a .bin with MESS
Replies: 7
Views: 15159

Looks like a MESS bug to me, have you tried a different emulator?
by notaz
Thu Aug 29, 2013 10:09 pm
Forum: Cartridge
Topic: Fun with reset signals
Replies: 14
Views: 19882

I've got someone to translate Japanese text as
When G/A is powered on and reset, the input indicator is activated.
So I suppose this means it is power on reset signal.
Still strange it's marked as I/O in MD2 service manual and not just output.
by notaz
Thu Aug 29, 2013 12:42 pm
Forum: Tools
Topic: Profiling and debugging tools?
Replies: 12
Views: 9441

FWIW it's working in PicoDrive too. Doesn't latest Kega do it too?
by notaz
Thu Aug 29, 2013 12:17 am
Forum: Cartridge
Topic: Fun with reset signals
Replies: 14
Views: 19882

So, has anyone played with FRES?
I've noticed pressing reset on MD doesn't reset gate array registers at all, actually even the bios on slave still seems to be active and I can communicate with it from a test program on cart.
by notaz
Wed Aug 28, 2013 5:38 pm
Forum: Tools
Topic: Profiling and debugging tools?
Replies: 12
Views: 9441

I don't think I'll release this one as-is. There are too many hacked up copies of Gens floating around, and too many other hacks in my build. However, I'd be very happy to port GDB support into another emulator should there be an opening of source... Feature like that would certainly be welcome in ...
by notaz
Mon Aug 26, 2013 2:46 pm
Forum: Mega/SegaCD
Topic: Manufacturing an error [CD 32X]
Replies: 3
Views: 10765

Just edit your .brm file with a hex editor, throw in some FFs or something.
by notaz
Wed Aug 21, 2013 3:40 pm
Forum: Demos
Topic: overdrive
Replies: 42
Views: 32742

Nice card, no Linux drivers though :(
by notaz
Wed Aug 21, 2013 11:04 am
Forum: Demos
Topic: overdrive
Replies: 42
Views: 32742

Just out of interest, as it's says it's RGB capture, how was it made? Is that using some hardware that TmEE is credited with?
by notaz
Mon Aug 19, 2013 10:36 pm
Forum: Demos
Topic: overdrive
Replies: 42
Views: 32742

Really impressive stuff, congrats with a great release!

Emulating this on 200MHz ARM will be a challenge, but I take it. I'll be back to you when I'm done, if you care (and still alive).
by notaz
Fri Aug 16, 2013 4:44 pm
Forum: Megadrive/Genesis
Topic: some help for rom hacking
Replies: 4
Views: 4231

If you look at the code, it copies the register to RAM for later use.

You can change from:

Code: Select all

MOVE.b $00A10001, D0

Code: Select all

306: 1039 00a1 0001
to just

Code: Select all

MOVE #$0xa0, D0
NOP
NOP

Code: Select all

306: 70a0 4e71 4e71
.. and then fix checksum.
by notaz
Fri Jun 28, 2013 1:23 pm
Forum: Tools
Topic: Time to update to gcc 4.6.2
Replies: 42
Views: 32012

Well I'm looking for mode1 + 32x, so it's Wolf32X only then. The Wolf32X release thread (first post at least) doesn't seem to mention mode1 though.
by notaz
Thu Jun 27, 2013 11:03 am
Forum: Tools
Topic: Time to update to gcc 4.6.2
Replies: 42
Views: 32012

I'm not aware of any emulator yet supporting the CD mode 1 in 32X mode. I had to get that working completely on real hardware via flash cart. Fusion supports mode 1 in MD mode. A bit of a gravedig, but I wonder if we have anything that uses this? I could of course cook something myself, but maybe s...