Search found 514 matches

by Miquel
Sat Jan 04, 2020 10:53 pm
Forum: Megadrive/Genesis
Topic: General Gunstar Heroes rambling
Replies: 5
Views: 9544

Re: General Gunstar Heroes rambling

The 'SEGA' animation at the start generates multiple scaled copes of the logo on the CPU on start-up and animates between them. The original unscaled SEGA logo appears to be the only uncompressed graphics in the rom. For some reason I just thought of it, the sprites of the two main characters/heroe...
by Miquel
Sat Jan 04, 2020 12:56 pm
Forum: Megadrive/Genesis
Topic: 68000 programming optimization tips? (for speed)
Replies: 28
Views: 37047

Re: 68000 programming optimization tips? (for speed)

The most stupid optimization, but useful since can be done in lot of occasions: move.b 0xA10001, d0 and.b #0xF , d0 Optimized: moveq.l #0xF, d0 and.b 0xA10001, d0 There is a difference: it clears the 3 upper bytes, which perhaps is what you need. Also works with other bit operations.
by Miquel
Wed Jan 01, 2020 12:50 pm
Forum: Megadrive/Genesis
Topic: General Gunstar Heroes rambling
Replies: 5
Views: 9544

Re: General Gunstar Heroes rambling

Palettes are defined independently as 16 uncompressed colours, then referenced in palette sets which are just pointers to 4 palettes to load at once. Makes sense that way, palettes can be loaded anytime. You can compress them do, there are unused bits, but bit manipulation is not cheap at cpu level...
by Miquel
Wed Dec 25, 2019 2:39 pm
Forum: Megadrive/Genesis
Topic: Shinobi arcade port
Replies: 3
Views: 8895

Re: Shinobi arcade port

Congratulations! Good job.
by Miquel
Sun Dec 22, 2019 4:41 am
Forum: Megadrive/Genesis
Topic: M68K Bus Control and Vdp
Replies: 26
Views: 42679

Re: M68K Bus Control and Vdp

You are right Eke, I thought that on cold start both z80 was stopped and without bus, so a fast position to check it, but it’s only stopped/reset. Just redid the experiment making sure the bus was acquired by the 68K and: Fusion: high byte Regen: high byte Gens KMOD: low byte MD1 Asian TMS: high byt...
by Miquel
Sun Dec 22, 2019 2:20 am
Forum: Megadrive/Genesis
Topic: Tilemap Compression
Replies: 1
Views: 5399

Re: Tilemap Compression

I haven’t studied 16bit Sonic games in detail, but I’m pretty confident they use a several level metatile as main compression system. In that case I don’t think is possible to compress the metatiles themselves, but I don’t know about the (top) map. Be sure to understand what I'm talking about becaus...
by Miquel
Sun Dec 22, 2019 1:38 am
Forum: Megadrive/Genesis
Topic: M68K Bus Control and Vdp
Replies: 26
Views: 42679

Re: M68K Bus Control and Vdp

I believe I do it with the Z80 stopped, but you could be right, let me check it again in a day or so.
by Miquel
Fri Dec 20, 2019 8:53 pm
Forum: Megadrive/Genesis
Topic: M68K Bus Control and Vdp
Replies: 26
Views: 42679

Re: M68K Bus Control and Vdp

Program tested: 0: move.w #0x00FF, 0xA00000 move.b 0xA00000, d0 jeq 0b Tested on (I could be using somewhat old versions of emulators): Gens KMOD: copies low byte Fusion: copies high byte Regen: copies low byte Real hardware TMS Asian: copies low byte Conclusion: it doesn’t matter since all those em...
by Miquel
Wed Dec 11, 2019 10:54 pm
Forum: Megadrive/Genesis
Topic: M68K Bus Control and Vdp
Replies: 26
Views: 42679

Re: M68K Bus Control and Vdp

I don’t know, my GUESS is: z80 bus is 8bit so you can't connect a word, it can’t be a buffer since there is no independent device working, therefor only d0-d7 are connected. The other option is d8-d15 are connected but that will be an unnecessary misconduct. move.b d0, 0xA00000 -> works for sure And...
by Miquel
Wed Dec 11, 2019 4:20 pm
Forum: Megadrive/Genesis
Topic: M68K Bus Control and Vdp
Replies: 26
Views: 42679

Re: M68K Bus Control and Vdp

No word access: Z80 memory space can only be accessed by the 68k in byte address mode, and that has to mean something.
by Miquel
Mon Dec 09, 2019 10:20 pm
Forum: Megadrive/Genesis
Topic: M68K Bus Control and Vdp
Replies: 26
Views: 42679

Re: M68K Bus Control and Vdp

No, you can write bytes from the 68k both at even and odd address. Documentation says (m68k.pdf): 68k byte Write Cycle: “STORE DATA ON D7–D0 IF LDS IS ASSERTED. STORE DATA ON D15–D8 IF UDS IS ASSERTED” So in theory the other byte is in unknown value. I could be that the byte is duplicated by the 68k...
by Miquel
Mon Dec 09, 2019 7:56 pm
Forum: Megadrive/Genesis
Topic: M68K Bus Control and Vdp
Replies: 26
Views: 42679

Re: M68K Bus Control and Vdp

For all I know, when the 68k reads something it stores the data into the data register as is in the data bus, in the next cycle, when it moves it to some other part (alu or general use registers, for example) on the exit of the data register it can swap bytes if needed. When it’s time to write…I hav...
by Miquel
Mon Dec 09, 2019 6:30 pm
Forum: Megadrive/Genesis
Topic: M68K Bus Control and Vdp
Replies: 26
Views: 42679

Re: M68K Bus Control and Vdp

Which register are you talking about, vdp register or cpu register?
by Miquel
Mon Dec 09, 2019 2:56 pm
Forum: Megadrive/Genesis
Topic: M68K Bus Control and Vdp
Replies: 26
Views: 42679

Re: M68K Bus Control and Vdp

From real hardware perspective I don’t know if VDP registers take into account UDS/LDS signals or not. What I know is that is not necessary at all, doing so only will waste chip gates. All memory access are 16 bit access, and then on a byte operation the 68K uses the upper or lower byte ONLY. Theref...
by Miquel
Sun Dec 08, 2019 10:44 pm
Forum: Megadrive/Genesis
Topic: M68K Bus Control and Vdp
Replies: 26
Views: 42679

Re: M68K Bus Control and Vdp

It will be unnecessarily more complicated doing so.
But what’s really the difference of setting those lines with known values or not: either case will be ignored.