This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Messages - calc84maniac
Pages: 1 ... 11 12 [13] 14 15 ... 197
181
« on: December 24, 2012, 03:46:19 pm »
FILE * f = fopen("/documents/miner/mapdata.tns", "r"); for(j = 0; j < 10120; j++) fscanf(f, "%d", &map[j]); fclose(f);
182
« on: December 24, 2012, 03:12:55 pm »
You're passing a double to a %f specifier, that's a problem don't you think? Make it %lf for the double.
183
« on: December 24, 2012, 10:33:55 am »
sizeof gives size in bytes, not number of elements. You should really do:
for(j = 0; j < sizeof(map)/sizeof(map[0]); j++)
Edit: Also, I think your fprintf should probably print some whitespace too so you can actually read the numbers back later instead of getting an incomprehensible giant string of digits.
184
« on: December 22, 2012, 10:00:23 pm »
23) When you try out a fake reset program and find out it wasn't installed properly when you Reset All Mem (Happened to me once upon a time  )
185
« on: December 22, 2012, 03:06:20 pm »
implement correct behavior of unaligned memory access and jumps For those wondering what this accomplishes, now gpSP-Nspire should actually run in the emulator
186
« on: December 22, 2012, 03:03:00 pm »
http://www.techpoweredmath.com/confirmed-texas-instruments-release-color-ti-84/"Apps between older models and the 84+ C are not compatible, so Texas Instruments is in the process of rewriting their most popular TI-84+ apps for the 84+ C. At the time of release, the TI-84+ C will come preloaded Finance, Inequalz, App4Math, CellSheet, EasyData, Plysmlt2, and Smartpad. Over the course of the summer of 2013, many more of the popular TI-84+ apps will be released for the 84+ C including Areaform, CabriJr, Conics, Periodic, ProbSim, SciTools, and Transfrm." As for TI-BASIC I don't remember the source, but given the differently sized home screen and graph screen, you can see where the incompatibilities will crop up.
187
« on: December 22, 2012, 02:07:29 pm »
If you use a constant value in For() which is 256 or less, it's already optimized to loop over a single byte. I guess there's no For(const)r for that reason.
188
« on: December 19, 2012, 01:08:37 pm »
I think I heard that the PRIZM's USB port only supports peripheral mode, and it's not OTG. That's why you can't use it for calc-to-calc linking and such, and I don't think it's able to run in host mode at all.
189
« on: December 18, 2012, 11:50:52 pm »
Whoops, I mixed up the details a little, but Episode V and Episode VI were always called that and the Episode IV rerelease came after Episode V. Either way, they were never 1, 2, and 3.
190
« on: December 18, 2012, 11:23:39 pm »
I wonder if in the future, they'll do like Star Wars and rename LOTR series as The Hobbit 4, 5 and 6? That would suck 
Actually, the first Star Wars was originally called Episode IV (though they didn't show "Episode IV: A New Hope" in the movie's title sequence until the movie's rerelease before Episode V).
191
« on: December 14, 2012, 10:07:26 pm »
There was no reason to use such large signing keys in the first place
192
« on: December 14, 2012, 09:17:17 pm »
Axe lets you include the same program twice.
I would think that's a feature, unless it's recursively including the same program.
193
« on: December 13, 2012, 08:20:53 pm »
Wonderflonium edition?
194
« on: December 13, 2012, 07:12:46 pm »
only 21KB RAM? O.o what should we do??? 
Fill it up, of course!
195
« on: December 12, 2012, 05:04:24 pm »
I was speaking collectively
Pages: 1 ... 11 12 [13] 14 15 ... 197
|