would it be possible to make a multi emulator for gp32?
you could replace the:
gpmain(){
emulatornameInit();
emulatormainloop();
emulatorexit();
}
with this
gpmain(){
emulator();
}
emulator(){
init();
loop();
exit();
}
and also clear up the makefiles and make them really simple, with as little macros, and with all the .c files in the same directory.
then these emulators could be joined together into the same menu.
of course they couldnt add up to more than 8mb so u could put all the 8bit and smaller emus into one to make it more simple.
hope u know what i mean.
you could replace the:
gpmain(){
emulatornameInit();
emulatormainloop();
emulatorexit();
}
with this
gpmain(){
emulator();
}
emulator(){
init();
loop();
exit();
}
and also clear up the makefiles and make them really simple, with as little macros, and with all the .c files in the same directory.
then these emulators could be joined together into the same menu.
of course they couldnt add up to more than 8mb so u could put all the 8bit and smaller emus into one to make it more simple.
hope u know what i mean.