Two more video of MSX games
KingValley I
http://www.youtube.com/watch?v=JN_d26Ve1FA
VampireKiller
http://www.youtube.com/watch?v=KIOLoaMzYe8
:)
They are extremely dark...
yes, they are quite dark... But it's amazing to see a software emulated MSX2 VDP on a 8MHz CPU! How can this be done???
They are extremely dark...
I found a bug. Color conversion was
R = (color & 3)<<2
G = (color & 3)<<4
B = (color & 3)<<6
So for max level of component 3 the R equal 0xC0 that is far from high level
I convert code to
Byte r = ((val & 0x30)>>4)*(255/3); // isolate colour value
Byte g = ((val & 0x0C)>>2)*(255/3); // isolate colour value
Byte b = (val & 0x03)*(255/3); // isolate colour value
Maybe I will update movies later.
But are they really emulated?. IIRC they were patched to work as closely possible of the original VDP; but always working over the Aleste hardware.
Well I have decision does not update YOUTUBE movies. Big hussle but not so many reasons. It is readable and enought. What about source and binary emulator I updated it...
jltursan right. Game bios patched to use software virtual VDP.
I wrote few details at
http://aleste520.narod.ru/html/vdp_emulator.html
Read after 'Example The VampireKiller game is a 128KB ROM. Aleste version has 3 files: '
The background of the Konami logo animation should be white. It's quite grey now, that's why we say that the video is quite dark.
The background of the Konami logo animation should be white. It's quite grey now, that's why we say that the video is quite dark.
It is seems gray cause emulator draws interleaved image, each second line is black.
Want ask me why? Pleas do not do it.
So gray screen is not aleste's problem it is emulator's problem, or somthing at emulator could be configured or there is my bug at the code. I do not know.
So if emulator will done well the image will be white
The background of the Konami logo animation should be white. It's quite grey now, that's why we say that the video is quite dark.
Whell I have update emulator where add suport of rendering style 1.
After switched rendere to this mode (at cfg file)
scr_style=1
With this style each line rendered 2 times. So no black lines between. Then image bright now. As I said before it was at the emulator but not at Aleste side.
I have update game moves. More easy find it here http://aleste520.narod.ru/html/vdp_emulator.html