Page 1 of 1

Question about "Full Graphics Function"

Posted: Mon Apr 03, 2017 3:24 pm
by Ralakimus
While reading through the documentation, I noticed there was a "Full Graphics Function" for the ASIC chip that allows you to input a bitmap from the MCD side and the MD side can read it as tiles, while in 1M/1M mode.

I'm not quite sure how I could perform this. Is it just that you put in the data and it automatically does the job or is there a certain thing you got to do to activate it?

Re: Question about "Full Graphics Function"

Posted: Wed Apr 19, 2017 4:24 pm
by Orion_
you just have to write data at a specific address on the CD side
and read back the "tiled" data on the MD side

depending on the way your tile map is set up on the MD side
For example, for a 64x16 TileMap Mode (512x128 pixels screen)
write your data to WordRAM at $D0000 from CD cpu side
and read them back at $230000 from MD cpu side (using DMA transfer to VRAM it's faster)

nothing to wait, (beside waiting for the CD cpu to write all the data to the wordram)

Re: Question about "Full Graphics Function"

Posted: Wed Apr 19, 2017 10:29 pm
by Ralakimus
Ah, so it's as simple as that. Thanks!