Doomulation
?????????????????????????
That site is weird anyway...
It's always nice to know that people gets interested in writing new emulators. I'd like to write a NES and a C64 emulator someday, when I have more time, just for fun.TheImpaler said:I've been Studying hardware docs and emulation for a few months with the intention of creating an emulator, so what better way to start then with a Chip8. or so I've been told before
I hope to produce something in the near future
Edit: Hmm, a thought just came into my head, would it be worth my while making this to work on linux and mac also?
_pm_ said:It's always nice to know that people gets interested in writing new emulators. One of my dreams is to write a NES and a C64 emulator someday, just for fun.
About linux and mac, if you want to make a cross-platform project, I suggest you use a cross-platform media library, like SDL or Allegro, it will make your life easier
Btw, I love using SDL for my games![]()
Who, me?hap said:Astonishment made you say it 3 times in a row ?![]()
_pm_ said:Yeah, Saturn is probably one of the most complex consoles to emulate (if not the most), that's the reason for the lack of Saturn emulators, compared with PSX, N64 or even GC. If you managed to make it boot, congratulations![]()
Good luck!!!TheImpaler said:I didn't even get that far lol, but hopefully I should get something on this chip8 done in the near future![]()
Yes... you DID post three times a row, so that's probably to whom he's referring. I know that problem all too well, though. Stupid database or sumethin'.bcrew1375 said:Who, me?
byte [] chip8_sprites = {
0xf9,0x99,0xf2,0x62,0x27,
0xf1,0xf8,0xff,0x1f,0x1f,
0x99,0xf1,0x1f,0x8f,0x1f,
0xf8,0xf9,0xff,0x12,0x44,
0xf9,0xf9,0xff,0x9f,0x1f,
0xf9,0xf9,0x9e,0x9e,0x9e,
0xf8,0x88,0xfe,0x99,0x9e,
0xf8,0xf8,0xff,0x8f,0x88,
};
for (int i=0; i<40; i++)
{
SetByte(i*2, (byte)((chip8_sprites[i]&0xf0)));
SetByte(i*2+1, (byte)(chip8_sprites[i]<<4));
}
|\/|-a-\/ said:oh, sure 0x200, i loaded it to 200 *hahaha*. i wouldn't have noticed it, if you hadn't answered, thanks dude! but i don't know anything about the fonts...
i saw a header in a few games, for example
"BLITZ By David WINTER" ?!