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

Pages: 1 ... 35 36 [37] 38 39 ... 57
541
Miscellaneous / Re: Dragon Cave discussion
« on: November 13, 2010, 08:48:41 am »
:o My dragon got 2141 unique vews :o

542
Pretty game, but as you say, there is a bug :

543
Axe / Re: The Complete Guide to Effective Axe
« on: November 12, 2010, 09:59:07 am »
;)

544
A propos des nspires, elles peuvent toutes émuler une 84+?

545
TI-BASIC / Re: Application booting just after turning on
« on: November 12, 2010, 09:38:44 am »
Un shell est un programme ou une application capable d'exécuter un programme asm stub. Les plus connus sont ion et mirage OS, mais il y a aussi Doors CS 7.1, noshell (que je conseil) et d'autres encore. C'est en fait une interface pour démarrer des programmes.

546
Donc c'est combien finalement pour une TI-83+ et TI-84+ ?

547
Hmm... c'est bizarre qu'il ai fait cette erreur.

548
La documentation de Quigibo :
Quote
What is RAM? You probably know its just a bunch of memory, 65536 bytes of it to be
exact on the TI-83/84.
65536 octets, mais ou sont-ils réellement ?  ???

549
Axe / Re: filling subroutine
« on: November 11, 2010, 06:57:03 pm »
OK, thank.

550
Axe / Re: filling subroutine
« on: November 11, 2010, 06:40:41 pm »
What is a stack overflow ? How prevent that ?

551
Axe / Re: filling subroutine
« on: November 11, 2010, 06:31:05 pm »
OK, there is 1 random bugs and always final crash ;D

552
Axe / Re: filling subroutine
« on: November 11, 2010, 06:01:56 pm »
It work perfectly, don't crash (with screen limit).

553
Axe / Re: filling subroutine
« on: November 11, 2010, 05:59:54 pm »
Wow... usefull ʳ :o
Correction with screen limit :
Code: [Select]
:Lbl FIL
:If Pxl-Test(r1,r2) or (r1≥96) or (r2≥64)
:Return
:End
:Pxl-On(r1,r2)
:sub(FILr,r1+1,r2)
:sub(FILr,r1-1,r2)
:sub(FILr,r1,r2-1)
:sub(FILr,r1,r2+1)
:Return
pretty routine, thank ;)

554
Axe / Re: filling subroutine
« on: November 11, 2010, 05:33:46 pm »
I already read this, but I can't find how to use in Axe Parser (r1 is always same variable).

555
Axe / filling subroutine
« on: November 11, 2010, 05:30:01 pm »
I'm looking to make a function filling like paint. I already tried some stuff, but I think I share in the wrong direction :
Code: [Select]
:2→Z
:sub(FIL,X,Y)
:...
:Lbl FIL
:r1→{L1+Z}
:r2→{L1+Z+1}
:While Z
: !If pxl-Test({L1+Z},{L1+Z+1})
: Pxl-On({L1+Z},{L1+Z+1})
: Z+2→Z
: sub(FIL,r1,r2+1)
: Z-2→Z
: sub(FIL,r1,r2-1)
: Z-2→Z
: sub(FIL,r1+1,r2)
: Z-2→Z
: sub(FIL,r1-1,r2)
: End
: Z-2→Z
:End
:Return

Pages: 1 ... 35 36 [37] 38 39 ... 57