JMD // DC Dev Page
Hi,
Here is my page for Dreamcast Dev. I also wrote some
french tutorials on ProgrammationDC
(The french DC Dev ressource).
Last update : 07/04/2004
Maqiupai
Maqiupai is a hombrew Puzzle game for Sega Dreamcast. The code (with free tools : KOS, GCC et Dev C++), graph and musics are made by JMD. Maqiupai finished 2nd of the Dream-On contest.
myGraphLib 1.0
myGraphLib is just a (very) simple and minimal graphic library to use with KOS.
The objective was to create a simple way to draw 2D graphics with PVR without define all vertex and params every times.
myGraphLib support filter, zoom and offset and just need 3 steps to draw an image : load a texture, define a surface (piece of the texture image) and blit it on the screen with effects.
The doc is minimal with just comments in the header file and an exemple (main.c). This lib can be greatly improved because it's originaly built for my own project and I'm open to any positive comments.
You can do everything you want with the content of the package. If you use it, just give me credits.
You can mail me any comment/questions or post them to IMRtechnology, DCEmulation or DCreload (french) forums. I frequently visit them.
Bin2oDC.exe (source)
Bin2o to use with the pern
project dc dev solution. It's an adaptation of the bin2o by Rafael
Vuijk (aka Dark Fader) found on the net (sorry, I loose the url).
Can be run under DOS or add in the VC++ makefile.
Syntax :
bin2oDC.exe <input.bin> <output.o>
For exemple, to create a Romdisk, copy bin2odc.exe in your
c:\devkitdc\utils\ folder and add these lines in your.mak file after the
flags for the compilers.
# -------------------------------------------
# Exemple of a Romdisk creation;
# -------------------------------------------
UTILSDIR = $(DEVDIR)\utils
all : romdisk.o
romdisk.img:
$(UTILSDIR)\genromfs.exe -f
"$(SRCDIR)\romdisk.img" -d "$(SRCDIR)\romdisk" -v
romdisk.o:romdisk.img
$(UTILSDIR)\bin2odc.exe "$(SRCDIR)\romdisk.img"
"$(SRCDIR)\romdisk.o"
04-2004 / JMD / jm1200@hotmail.com