Hello BEY,
Unfortunately, upload to graphics RAM on the Neo CD is very slow.
I don't know precisely the bandwidth, but copying 128x128 pixels already takes up at least 2 vblanks. That's with CPU copy.
I'm not sure if DMA can be done while the video is active, I'll have to check later this week.
Could you give the bitmap size on which you'd like to draw the frames ? You'll also be limited to 16 colors.
I can give you the code to plot in the right format and to copy to graphics RAM.

Je fais des trucs. Des fois ça marche, des fois ça marche pas.
BEY Le 25/10/2013 à 11:36 Hi Furtek,
First, thanks for your help.
I'll describe you the actual scenario (lable TODO is where I'm actually need help):
Basic Galaxian Memory map
0000-27FF Game ROM
5000-57FF Vram Character ram
5800-583F OBJRAM Screen attributes
5840-585F OBJRAM Sprites
5860-5FFF OBJRAM Bullets
Write From Galaga VRAM (start addr: 0x4000) to NeoGeo Screen with size 26x32:
Dim Galaga Ram:
unsigned char RAM[0x8000]; //Galaga RAM Buffer (32K RAM)
NG_VIDEO_DRAW:
for(y = 0; y < 32; y++)
{
int pos = 0x5000+32*(25)+y;
for (x = 0; x < 26; x++)
{
c = RAM[pos]
textout(4+x, 0+y, 0, 0, c); /Put only ascii char for now
pos -= 32;
// TODO put Galaxians sprites
}
}
wait_vbl();
Now I need to decode Sprite and Galaxian VRAM in NG VRAM (Galax. use 256 characters and 64 sprites):
//Galaxian general, change for other games
base = 0x5000;
MAXCHARS = 256;
MAXSPRITES = 64;
MAXPALETTES = 16;
char *chars[MAXCHARS][16]; // All the characters
char *sprites[MAXSPRITES][16]; // All the sprites
//Load Into NG RAM foreground characters from Galaxian VRAM
for (Y = 0; Y < 32; Y++)
{
for (X = 0; X < 32; X++)
{
offset_value = RAM[base + (31 - Y) * 32 + X];
//TODO draw_sprite function for NeoGeo!!
draw_sprite( chars[offset_value][RAM[base + 0x801 + X * 2]],
((Y * 8 + (unsigned char) RAM[base + 0x800 + X * 2]) % 256),
X * 8
);
}
}
CIAO
GRAZIE!!!
BEY
From St@ff www.IoCero.com
BEY Le 05/11/2013 à 17:55 Now I'm trying to use a trick for Galaxian (Or Galaga, or Phoenix, or..etc.) tile conversion into NG format but I don't know if it is a easy way..
I hope to make the system think we're using the standard tile format
Es.
int NeoGeoVideoDraw(A)
{
int x,y;
Uint8 c;
unsigned int background_y;
for(y = 0; y < 32; y++)
{
int pos = 0x4000+32*(26-1)+y;
int pos2 = 0x4800+32*(26-1)+y;
for (x = 0; x < 26; x++)
{
background_y=(y+(32-scroll_reg/8))%32;
map_data[(background_y*64)+x] = RAM[pos2] << 1;
gfx_data[(y*64)+x] = RAM[pos] << 1;
pos -= 32;
pos2 -= 32;
}
}
return(0);
}
Now map_data and gfx_data are the buffer to draw like tile into NeoGeo with this routine (Thx to Furtek help!):
move.l #BUFFER,BIOS_UPSRC
move.l #32,BIOS_UPDEST
move.l #WIDTH*HEIGHT*4*8,BIOS_UPSIZE
move.b #1,BIOS_UPZONE
move.b #0,BIOS_UPBANK
jsr BIOSF_UPLOAD
Can someone translate this asm function in C code, please?
Thx!!
Ciao
BEY
www.IoCero.com
kuk Le 12/11/2013 à 16:49 super nouvelle ! je vais testé ça rapidement
Le lien ne fonctionne pas avec Internet explorer
kuk Le 12/11/2013 à 17:42 yeah it not working with internet explorer
kuk Le 13/11/2013 à 18:09 Hello
I burn two CD of NeoPhoenix_001 but i have an error 002 in the middle of loading in my neo geo front
And i have a bug in the left of the screen on neorain emulator
kuk Le 15/11/2013 à 10:27 idem le lien ne fonctionne pas ni sur Chrome ni sur IE ni mozilla
kuk Le 15/11/2013 à 10:35 Oui c'est mieux
Je crame un Cd et je te dis
kuk Le 15/11/2013 à 12:43 i could try to make an video
kuk Le 15/11/2013 à 12:55 i dont know if it's me but i see a low difference on the tv than the emulator
kuk Le 15/11/2013 à 14:03 it's hard to explain, it's on the sprite rendering/aspect
like if all the pixel are not "present" like a probleme with the scan line
salut tlm, effectivement j ai fait une pause mais je suis de retour, je traine sur l irc #neogeodev.