Show Posts

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 - apcalc

Pages: 1 ... 84 85 [86] 87 88 ... 96
1276
Calculator C / Re: Code crashing calc
« on: July 28, 2010, 06:27:58 pm »
In this code:

Code: [Select]
  int a, b;
  short int maze[11][11];
  for (a = 0; a == 10; a++) {
    for (b = 0; b == 10; b++) {
      maze[a][b] = 15;
      if (a == 0)
        maze[a][b] += 16;
      if (a == 10)
        maze[a][b] += 64;
      if (b == 0)
        maze[a][b] += 32;
      if (b == 10)
        maze[a][b] += 128;
    }
 }

Could it be that you could be adding to a value that does not yet exist?  I have never used anything like this in C (the values might initilize to 0, I am not sure), but if you are adding, say 16, to an empty variable, it might crash.  If this is the case, just add:

Code: [Select]

int x,y;
for(x=0;x<11;x++) {
for(y=0;y<11;y++) {
maze[x][y]=0;
}
}

I will try to look at the code a little close later if this does not fix the problem.  Good luck! :)

1277
Other Calculators / Re: Lost projects
« on: July 28, 2010, 03:45:51 pm »
calc84, I was wondering if you are going to restart any of the projects you lost, like the Z80 and 68k emulators.  Likewise, good luck with your new projects that you can start now.  I hope everything will work out for you. :)

1278
Other Calculators / Re: Press-to-test LED
« on: July 28, 2010, 02:52:46 pm »
This would be really nice to have control of.  Like, if you beat a level in a game, it could be green, if you lose, it would be red.  Also, it could be used to show what powerups you have in a game.  It would have many uses. :)

1279
Calculator C / Re: Post your Nspire routines here!
« on: July 28, 2010, 10:21:33 am »
Because of the release of Nleash and the ability to use Ndless on Touchpad Nspires, do we have the keypad mappings (or a new common.h file) for the touchpad.  In this case, we could just compile four versions of our programs (Non CAS Clickpad, CAS Clickpad, Non CAS Touchpad, CAS Touchpad) to be used on any Nspire.

1280
Project M (Super Mario) / Re: Project M Reboot
« on: July 28, 2010, 09:29:38 am »
DJ, I think he said he had his Z80 projects backed up on a flash drive.  He only lost his Nspire projects. :(

1281
Miscellaneous / Re: Vacations, Absences, etc.
« on: July 27, 2010, 11:05:29 pm »
I just found out that I will be going on a short trip on the August 14-15 weekend (I think).  Once again, I am not sure if I will have internet access (last time I had to use a weird cable that was broken to get it in the hotel), hopefully, the hotel will have free wifi.  Nevertheless, I may disappear for these two days.

1282
We need some sort of quality control, though, lest the newcomers think Omnimaga is a site dedicated to creating quadratic solvers in Axe :P

Although we specialize in quadratic solvers in Axe, we also write them in BASIC, C for the 89, C for the Nspire, Z80 ASM, ARM9 ASM, and 68k ASM. ;)

1283
Miscellaneous / Re: Vacations, Absences, etc.
« on: July 27, 2010, 09:22:47 pm »
Have a good time calcdude84se!

We will miss you while you are gone. :(

1284
Other Calculators / Re: Nleash for TI-Nspire OS 2.1
« on: July 27, 2010, 06:48:44 pm »
Beautiful ExtendeD!!!!!

This is an excellent attack against TI.  Remember TI, you can't stop us, we will always find a way around your evil attacks!

1285
Other Calculators / Re: ti-nspire google group
« on: July 27, 2010, 02:56:56 pm »
Although I would love to see it happen, I can understand why TI does not want us to crack the RSA key because that would allow us to use the CAS OS on the regular Nspire.

I can not understand why ASM/C programming is blocked.  TI used to support the use of ASM programs (and still support games for Z80 calcs on their website) and I cannot see why they want to start blocking it now on the Nspire.

1286
If using the real link port isn't working out, then at least make a release that has a virtual link port, where the emulator can send .8x* files already on the calc.

Calc84's computer crashed the other day, and he lost the source code for this, along with several other, projects.  I doubt we will see a release of this soon. :(

1287
Miscellaneous / Re: Human Languages
« on: July 27, 2010, 10:25:12 am »
That's because the US only have one official language :D

Although a great majority of the population speaks english, the US dosen't have any official language.

1288
Yes, this will require Ndless to run if it is released.

1289
Other Calc-Related Projects and Ideas / Re: Floorcaster
« on: July 27, 2010, 12:04:36 am »
bwang, this looks great!  It works very nicely on calc! :)

1290
Miscellaneous / Re: Human Languages
« on: July 26, 2010, 11:42:19 pm »
English - Advanced
Spanish - Beginner/Intermediate

Pages: 1 ... 84 85 [86] 87 88 ... 96