Search found 20 matches

by Mysoft
Tue Dec 14, 2021 12:32 am
Forum: libfat
Topic: nitroFS / libFAT and DSi not working properly
Replies: 0
Views: 12217

nitroFS / libFAT and DSi not working properly

so i finally could try my DSi with exploits... with unLaunch + twilight... but then i found out that none of my .nds files that used either libFat or NitroFS worked there... independent of the mode of operation... directly from unLaunch... from twilight in DS/DSi modes... direct and indirect using b...
by Mysoft
Sun Sep 08, 2013 9:52 pm
Forum: DS/DSi Development
Topic: MODE_FIFO
Replies: 2
Views: 5854

Re: MODE_FIFO

The FIFO mode only works on the primary graphics engine so, sorry, there's no way to use 3D on both screens without using VRAM. Were you intending to use software 3D to do this? well actually if i understood your question correctly.... my goal was to make a hw accelerated 2D engine for the freebasi...
by Mysoft
Sat Sep 07, 2013 10:15 pm
Forum: DS/DSi Development
Topic: MODE_FIFO
Replies: 2
Views: 5854

MODE_FIFO

MODE_FIFO works for the sub screen? or as in a more specific question there's another way to use 3D in both screens in a way that no VRAM is used? my assumption was that the capture could capture to RAM and then that RAM would DMA to screen so that i can use it for a 256x384 screen without sacrifici...
by Mysoft
Sun Jul 15, 2012 3:34 am
Forum: DS/DSi Development
Topic: zlib using bios functions
Replies: 3
Views: 6710

Re: zlib using bios functions

Just because there's a bios function doesn't mean it will be any faster. yeah but, since the BIOS function is written by nintendo, i would expect they to put effort, into optimizting it for that, instead of just lazyily compile code, like it is the case with the the ZLIB... altough based on the fia...
by Mysoft
Sat Jul 14, 2012 4:57 pm
Forum: DS/DSi Development
Topic: zlib using bios functions
Replies: 3
Views: 6710

zlib using bios functions

as you guys know, among the bios functions there's support to decompress lz777 / huffman / rle which is exactly what zlib uses (altough i'm not sure if they are modified versions of those) but so my question is... anyone know if it's possible to use those to make the INFLATE/UNCOMPRESS functions fro...
by Mysoft
Wed Jun 29, 2011 8:48 pm
Forum: Bug Reports
Topic: '\t' is not acting correctly
Replies: 5
Views: 7182

Re: '\t' is not acting correctly

I'm not rebelling against anything, having 8 character tab stops on a 32 character wide screen seemed rather pointless & we decided on 4. It's not a bug, it's simply something not working how you expected it to, much like the null character termination in the console code. These are both undefi...
by Mysoft
Wed Jun 29, 2011 6:04 pm
Forum: Bug Reports
Topic: '\t' is not acting correctly
Replies: 5
Views: 7182

Re: '\t' is not acting correctly

Perhaps you'd like to point us to the standards documentation that states unequivocally that the tab character should align to a multiple of 8 spaces ... it does say that they are ascii chars, and ascii reference says that controls 0 to 31 are reserved for meta info and so for example this http://w...
by Mysoft
Wed Jun 29, 2011 4:26 pm
Forum: Bug Reports
Topic: '\t' is not acting correctly
Replies: 5
Views: 7182

'\t' is not acting correctly

\t is generating 4 spaces instead of tab... which means that on

Code: Select all

printf("A\tB\nAA\tB\n");
the generated output should had B aligned but it doesnt :)
(outputting to the console)
by Mysoft
Tue Jun 28, 2011 7:12 pm
Forum: DS/DSi Development
Topic: ADPCM sample
Replies: 12
Views: 17432

Re: ADPCM sample

mysoft, if you can send me your buildable project zipped up I will investigate why it sounds so crappy in desmume. advanced spu logic is supposed to be flawless. well, i see... but the project is made on freebasic using the "-gen gcc" switch, that uses GCC as a "high level assembler&...
by Mysoft
Tue Jun 28, 2011 8:53 am
Forum: DS/DSi Development
Topic: ADPCM sample
Replies: 12
Views: 17432

Re: ADPCM sample

man, that sounds terrible and poppy in desmume. be aware that if you have a looping sample, there is some kind of quirk where the loop point needs to be a multiple of 16 or something like that. pay close attention, and look it up on gbatek. you may need to resample the sound to a funny samplerate s...