Search found 252 matches

by Gambit
Wed 30 Nov, 2005 7:41 pm
Forum: Announce Your Projects
Topic: C++ basic compiler
Replies: 42
Views: 18329

Re: C++ basic compiler

Can anyone help me out on finding the file format or the codes for basic commands? The file format (including checksums, etc) is fully explained here . The C compilers which are targetted at the 68k processors have been in dev for a while and are quite decent. They code produced is STILL bloatware ...
by Gambit
Sun 27 Nov, 2005 6:56 am
Forum: Programming Help
Topic: [TI-ASM] Memory map for the TI-83 Plus
Replies: 2
Views: 3158

Hmm, I replied to your other thread :oops:

Summary: Check out page 8-9 (18-19 of 188) of the TI SDK.
by Gambit
Wed 23 Nov, 2005 6:18 pm
Forum: Program Ideas
Topic: How about THIS......
Replies: 20
Views: 10923

Haha, what a coincidence! I was thinking about this too since I didn't see many Bejeweled clones on ticalc.org yesterday. The best that I found was Benumbered.
by Gambit
Mon 14 Nov, 2005 6:26 pm
Forum: General TI Discussion
Topic: language
Replies: 33
Views: 28962

And for TI BASIC, if your calculator didn't come with the "thick" manual, download it here from the guidebook page.
by Gambit
Tue 08 Nov, 2005 6:25 pm
Forum: Programming Help
Topic: [TI PC File Formats] ROM/8xu file format?
Replies: 1
Views: 2752

A .rom file is just a binary of each of the calc's pages. So for the 83+, it'll be exactly 512 KB (1Fh+00h = 32 * 16384). The SEs have 128 instead of 32 pages, I think. I usually reference the tixx link guide for .8xu. It's under subtopic 'Flash' under the File Formats section. And sometimes, I take...
by Gambit
Thu 03 Nov, 2005 5:54 pm
Forum: Program Ideas
Topic: The drawing program to rule them all
Replies: 24
Views: 12283

Yeah, I did get my initial interface idea from Sketchy, 'cause it was a cool App :) But featurewise, what do you guys think? Is the speed for drawing ok, or should I ditch _ILine? What about the pen/erase/invert push-button-toggle-something functionality? And is that a good default cursor speed? Any...
by Gambit
Tue 01 Nov, 2005 5:46 am
Forum: Program Ideas
Topic: The drawing program to rule them all
Replies: 24
Views: 12283

1 year anniversary of laziness!

Well, tomorrow/today (Nov. 1st) is the 1 year anniversary! :D ... of last modifying (i.e. working on) my drawing program. :x :roll: I'm not exactly sure why I haven't been motivated enough to finish this, but I am willing to bet on my numerous distractions (e.g. homework, sidetracking on other proje...
by Gambit
Wed 26 Oct, 2005 2:57 pm
Forum: General TI Discussion
Topic: Calcsys as a memory editor :)
Replies: 5
Views: 6734

Yeah, all the assembly games, unless its encrypted (which I doubt), store their data in plain hex. It's just a matter of finding that offset :) Heh, even more fun is showing your friends that you got 60K on ZTris and see their reaction, or .... :twisted:
by Gambit
Mon 24 Oct, 2005 7:01 pm
Forum: Programming Help
Topic: [TI-HEX] Full black screen in HEX?
Replies: 19
Views: 11590

ld hl,plotSScreen ld de,plotSScreen+1 ld bc,768-1 ld (hl),$FF ldir B_CALL(_GrBufCpy) ret Well, that looks right. You could also use _FillRect or something like that. But anyway, this code needs to be assembled. So, open up tasm80.tab and ti83plus.inc : LD HL,* 21 3 NOP 1 LD DE,* 11 3 NOP 1 LD BC,* ...
by Gambit
Sat 22 Oct, 2005 11:46 pm
Forum: Programming Help
Topic: [TI ASM] Why use any other input then Direct Input?
Replies: 23
Views: 11463

One reason why you use DI is because it's fast. 8) Reasons not to: * Well, working with Dan, the USB mouse can interface with _GetCSC and _GetKey, so you can use the mouse with, say Sketchy, without any modifications. :D * You can't interact with the OS's monitor, unlike _GetKey. A game usually does...
by Gambit
Thu 20 Oct, 2005 5:03 am
Forum: General TI Discussion
Topic: [TI BASIC] Emulator and rom image problem
Replies: 8
Views: 8638

Hmm, it looks like the GTK+ wasn't added to your path (I had this exact problem initially on my 98 computer). Odd, it added it fine for me on this XP computer. Since you have an NT computer, you need to add it to your environmental variables (NOT autoexec.bat). But before you try the below, try unin...
by Gambit
Thu 20 Oct, 2005 4:35 am
Forum: Programming Help
Topic: [TI BASIC] Subroutines and unarchiving in BASIC
Replies: 32
Views: 17435

Not sure if this has been brought up due to this topic appearing everywhere on various forums/threads, but I used a technique I found on ticalc.org ('cause I didn't want to think of one myself): http://www.ticalc.org/archives/files/fileinfo/145/14542.html Considering its age (Sat Sep 2 19:36:55 2000...
by Gambit
Wed 19 Oct, 2005 3:22 pm
Forum: General TI Discussion
Topic: [TI BASIC] Emulator and rom image problem
Replies: 8
Views: 8638

Hello spy :D TilEm needs the GTK+ runtime environment for its operation, so you'll need to install it first. In the TilEm readme, there should be an installer package link that goes something like http://glade... (note: link does not work, I just don't want to go looking right now :P). Install that ...
by Gambit
Fri 23 Sep, 2005 4:27 am
Forum: General TI Discussion
Topic: 84silver.com's competitions
Replies: 99
Views: 57305

Done :) So this is the reason behind that seemingly random info-line :lol: Hmm, the voting has indeed gone through some changes since I last used it. It told me I'm not allowed to vote until the "GraphiTI finalist" voting... I remember being able to vote every single day :roll: Wish I coul...
by Gambit
Fri 16 Sep, 2005 5:54 am
Forum: Programming Help
Topic: [TI BASIC + hex] Hex help
Replies: 14
Views: 9520

Hello, On-calc hex programs are just unsquished assembly programs. Therefore, anything you could make with TASM/ZDS/<insert favorite assembler here> you could type out on the calculator. Granted, it is MUCH more tedious, and you are more error prone and may make an assembling mistake, which may lead...