Search found 159 matches

by 8bitwizard
Thu Sep 27, 2007 2:50 pm
Forum: Video Display Processor
Topic: SMS mode on MD/Genesis
Replies: 15
Views: 18470

I think the cart would have to be specifically made to work in SMS mode, but I'm not going so far as to say it's impossible. It might be possible that if you grounded the M3 select, and interleaved the ROM image to put the Z80 code on every other byte, you could run a non-bankswitched SMS game. The ...
by 8bitwizard
Sun Sep 23, 2007 5:20 pm
Forum: Megadrive/Genesis
Topic: asmx and padding?
Replies: 17
Views: 14167

My software doesn't pad anything, since erased (flash)EPROM already has FF in unused places... The padding could still be required, your eprom would be performing the 'padding'. What in the Genesis would require the padding? The checksum is software only. And would be affected by the padding only i...
by 8bitwizard
Sun Sep 23, 2007 5:11 pm
Forum: Megadrive/Genesis
Topic: asmx and padding?
Replies: 17
Views: 14167

The genesis hardware need a 128 KB size alignment or your rom won't work correctly. You said objcopy do padding, can it does size alignement which is somewhat different from padding (padding just fill until you reach the pad size where alignement fill until size align). Maybe some emulator or game ...
by 8bitwizard
Sat Sep 22, 2007 5:03 am
Forum: Megadrive/Genesis
Topic: asmx and padding?
Replies: 17
Views: 14167

Re: asmx and padding?

Can padding be handled in asmx? I tried: ds 524288-*,0 But, this only works up to 1024 bytes, due to the MAX_BYTSTR define. Upping the size of the MAX_BYTSTR would work, but there has to be a cleaner way. Like CW said, you probably want ORG $80000. At the very least, you shouldn't specify padding l...
by 8bitwizard
Sat Sep 22, 2007 4:39 am
Forum: Announcement
Topic: SuperH in the industry
Replies: 7
Views: 14172

While I still have a soft spot for 68000 assembly language, ARM most definitely does not suck. And it's used all over the place. Nintendo DS for games; most modern PDAs, even the granddaddy of all PDAs, the Apple Newton (and now the iPhone!); and lots of embedded stuff. If SuperH is so good, then wh...
by 8bitwizard
Wed Sep 12, 2007 4:08 am
Forum: Tools
Topic: TFM Music Maker
Replies: 278
Views: 347482

elan wrote:@FrozenDelight> What about BootCamp+Windows on MAC :)
Dual-booting is so lame.
by 8bitwizard
Wed Sep 12, 2007 3:58 am
Forum: Video Display Processor
Topic: TV safe area
Replies: 123
Views: 97227

Most new LCD and Plasma TVs allow you to change the overscan. Mine does, but I noticed that when it's on 0%, there usually is some black either on the right, left, bottom, or top. It's like the TV station itself has bad centering, and these were digital channels. (The HD channels didn't have this i...
by 8bitwizard
Wed Sep 12, 2007 3:21 am
Forum: Cartridge
Topic: Anything about /TIME
Replies: 26
Views: 33784

I used something like this to program my GAL chip: CLK is the clock input to the SDA/SCL latches CLK = !TIME & !WR_L D7 input from SDA D7 = SDA D7.OE = !TIME & !OE D6 output to SCL SCL := D6 (latched by CLK) D7 output to SDA SDA = 0 SDA.OE := D7 (latched by CLK) and ROM_CE works just like it always ...
by 8bitwizard
Mon Sep 10, 2007 2:56 am
Forum: Cartridge
Topic: Anything about /TIME
Replies: 26
Views: 33784

How should I do the wiring of SDA/SCL? to be like 1of3 methods? Look for the other threads on this. Fom the hardware side you need latches for both SDA and SCL, with the SDA latch controlling the tri-state input of a gate which outputs either a zero or a tri-state (or use an open-collector output),...
by 8bitwizard
Mon Sep 10, 2007 2:52 am
Forum: Video Display Processor
Topic: TV safe area
Replies: 123
Views: 97227

The main reason is that TV manufacturers are cheap, and manufacturing variations will make it too hard to align sets for perfect centering. But there is a subtle reason which is not obvious until you have the ability to center your picture horizontally. If you do that and rotate the TV 90 degrees, t...
by 8bitwizard
Sat Sep 08, 2007 6:15 pm
Forum: Cartridge
Topic: Anything about /TIME
Replies: 26
Views: 33784

And about those I2C/Microwire do the emus support them, is there any official cart with any of those, so it can be compatible with emus? No released games used Microwire, and no more than 20 or so (including 32X games) used I2C. Many emulators do not support I2C save memory, and even those that do ...
by 8bitwizard
Sat Sep 08, 2007 6:05 pm
Forum: Video Display Processor
Topic: TV safe area
Replies: 123
Views: 97227

I've found that it's best to avoid using the top two and bottom two rows, and the left and right four columns on NTSC. That means keeping to 256x192 or 32x24 for anything important. It's not that you shouldn't use anything outside that range (it lets you avoid having a blank border), but you can't c...
by 8bitwizard
Thu Sep 06, 2007 10:57 pm
Forum: Cartridge
Topic: Anything about /TIME
Replies: 26
Views: 33784

It's very configurable. With logic gates. On the cartridge board.
by 8bitwizard
Thu Sep 06, 2007 4:02 pm
Forum: Cartridge
Topic: Anything about /TIME
Replies: 26
Views: 33784

There are no registers at $A13000-$A130FF. Not unless they are in a specific cartridge, in which case you should mention which cartridge you are asking about. /TIME is a chip select for the address range $A13000-$A130FF, just as /ROM_CE is a chip select for the address range $000000-$3FFFFF. I have ...
by 8bitwizard
Sat Aug 18, 2007 2:48 pm
Forum: Megadrive/Genesis
Topic: Sega2.doc Scans now in PDF
Replies: 3
Views: 8503

Thanks, except that PDF is evil. Only if you don't use a Mac. Adobe's PDF viewer and web plugin for Windows takes forever to start up, which is the true evil, but OS X uses PDF as its basic graphics model and comes with a viewer which supported it from the start. And this is nothing more than a bun...