Search found 147 matches

by CalcKing
Thu 20 Jan, 2005 3:53 pm
Forum: Off Topic
Topic: What's under your ctrl-v?
Replies: 264
Views: 114382

Hmmm...
I guess you can tell I've been posting on here. :)
by CalcKing
Thu 20 Jan, 2005 3:51 pm
Forum: General TI Discussion
Topic: Best Calculator
Replies: 28
Views: 18093

I voted for the 81. Why, you ask? Because I started using TI calcs by programming in BASIC on the TI-81! :D
by CalcKing
Thu 20 Jan, 2005 3:47 pm
Forum: General TI Discussion
Topic: How did you hear of maxcoderz?
Replies: 61
Views: 31621

I think I first came to MaxCoderz after reading this. :lol:
by CalcKing
Thu 20 Jan, 2005 3:34 pm
Forum: Program Ideas
Topic: Gunbound
Replies: 8
Views: 10510

I have a Worms game written in BASIC on my 83+ SE. :P

I did a quick search on ticalc just now, and I believe I got it here.
by CalcKing
Tue 11 Jan, 2005 8:45 pm
Forum: Programming Help
Topic: [TI ASM] Problem with shuffling
Replies: 20
Views: 9153

If you want to decrease the size even more, you can replace

Code: Select all

   cp 255
   ret z 
with

Code: Select all

   inc a
   ret z
Optimizing code is fun... :D
by CalcKing
Wed 05 Jan, 2005 8:59 pm
Forum: Off Topic
Topic: What does your username mean?
Replies: 168
Views: 80865

Well... despite what it may look like, I don't feel superior to everyone in the calculator community. I first used the name "King" when I played Age of Empires with my brother. I then used it in other games I played, and when I became interested in TI calculators I just typed in "Calc...
by CalcKing
Sat 25 Dec, 2004 9:05 pm
Forum: Announce Your Projects
Topic: A new interpreted language for Ti 83+ ??
Replies: 58
Views: 24744

Basically, I think this looks like an incredible project. 8)
by CalcKing
Sat 25 Dec, 2004 5:32 pm
Forum: Announce Your Projects
Topic: A new interpreted language for Ti 83+ ??
Replies: 58
Views: 24744

I was so stunned when I saw the pong game that I lost almost immediately! :lol:
by CalcKing
Sat 25 Dec, 2004 5:08 pm
Forum: General TI Discussion
Topic: [ASM Editors] Which ASM editor do you use?
Replies: 28
Views: 24208

ConTEXT is what I use, it too has a highlighter for z80 assembly files. With my customized batch files, I can assemble a program in any folder I want to by pressing F11. I also have F12 set to transfer the .8xp that is created in the folder to the calc. :D
by CalcKing
Thu 23 Dec, 2004 1:35 am
Forum: Programming Help
Topic: [TI ASM] Asm Help
Replies: 19
Views: 9902

Since you stored hl (the pointer) to the memory location TempSprite, you will have to use indirection to get the pointer data into ix.

Code: Select all

ld hl,MarioSprite
ld (TempSprite),hl
....
....
...
ld ix,(TempSprite)
call ionlargeSprite
call ionfastcopy
by CalcKing
Tue 21 Dec, 2004 2:32 am
Forum: Programming Help
Topic: [TI ASM] Display text on the homescreen
Replies: 26
Views: 19364

I have experienced similar errors when assembling for Ion, though I can't remember exactly what I did to fix them. I can say that it is probably a problem with the conditionals for 83/83+ label definitions.
by CalcKing
Tue 21 Dec, 2004 2:17 am
Forum: Programming Help
Topic: [TI ASM] Display text on the homescreen
Replies: 26
Views: 19364

Take a look at this for the differences between jp and jr.

As for the errors with putsprite, it would be helpful if you were more specific. :)