Search found 73 matches

by silver calc
Wed 06 Dec, 2006 4:34 am
Forum: Latenite, Brass and EarlyMorning
Topic: Latenite 2: Directory structure and project management.
Replies: 38
Views: 53614

So, hows it coming along?
by silver calc
Fri 01 Dec, 2006 9:59 pm
Forum: Programming Help
Topic: Ti-83 Programming Question
Replies: 6
Views: 4481

Just because ideally the probability is 6/11 doesn't mean that experimentally you will get that. How many trials did you use?
by silver calc
Sun 26 Nov, 2006 2:40 pm
Forum: Programming Help
Topic: [TI ASM] Opening up the Edit Buffer
Replies: 1
Views: 3412

[TI ASM] Opening up the Edit Buffer

I was looking through the TI-83+ system rom calls documentation by TI, and found that there were several functions that turned off/closed/deleted the edit buffer. However, I found no such rom call that turned it on.

How do you turn on the edit buffer?
by silver calc
Sun 26 Nov, 2006 2:34 pm
Forum: Latenite, Brass and EarlyMorning
Topic: Bugs
Replies: 72
Views: 117064

I've found another bug with the LateNite help files: The opposite of the nth bit of the second operand is written into the Z flag. This is obviously not true if you try this: ld a,$FF bit 7,a jr nz,quit ;test if not zero and quit bcall(_GetKey) ;pause if zero quit: ret You can also do this with any ...
by silver calc
Fri 24 Nov, 2006 10:35 pm
Forum: Announce Your Projects
Topic: Ti-83X
Replies: 4
Views: 3920

Do you know where I could get the source code for PrettyPrint? I was hoping that I could make it so that there could be an option to display your answers in that sort of format.
by silver calc
Thu 23 Nov, 2006 9:41 pm
Forum: Programming Help
Topic: [TI ASM] Edit buffer questions
Replies: 5
Views: 3687

Here's what's wrong: bit returns the opposite of what the nth bit of the byte. It seems that my routing had it backwards, so it was always reseting. Here's another question I have: I'm making a clear buffer routine for my edit buffer. Here's what I have: Clearbuf: set appTextSave, (IY + appFlags) ;b...
by silver calc
Wed 22 Nov, 2006 3:17 am
Forum: Programming Help
Topic: [TI ASM] Edit buffer questions
Replies: 5
Views: 3687

Yes, I have the cursor able flag turned on. I am also not updating the display (other than the default interrupts). The code isn't that it doesn't change the cursor, but that It resets the calc (actually, I am using PindurTI, so it resets that). Here's updated code to fix the set alpha problem (whic...
by silver calc
Tue 21 Nov, 2006 10:04 pm
Forum: Programming Help
Topic: [TI ASM] Edit buffer questions
Replies: 5
Views: 3687

[TI ASM] Edit buffer questions

I'm trying to create an edit buffer. However, I can't get it to display 2nd/alpha correctly. I'm using bcall(_GetCSC), so don't tell me to use GetKey instead. ;sk2nd detected set2nd bit Shift2nd,(IY+ShiftFlags) jr z,res2nd set Shift2nd,(IY+ShiftFlags) ret ; res2nd res Shift2nd,(IY+ShiftFlags) ret ; ...
by silver calc
Fri 17 Nov, 2006 10:28 pm
Forum: Latenite, Brass and EarlyMorning
Topic: Brass 2: Dropping TASM backwards compatibility.
Replies: 26
Views: 39853

Code: Select all

.binarymode ti8xapp                 ; TI-83+ Application
When I try this, it keeps giving me 'error: can't locate 0104 key'. I not sure, but is this an unfinished feature of Brass1? If so, would this work:

Code: Select all

.binarymode intelhex                 ; hex file
(and then use Wappsign)?
by silver calc
Fri 17 Nov, 2006 4:56 am
Forum: Latenite, Brass and EarlyMorning
Topic: Brass 2: Dropping TASM backwards compatibility.
Replies: 26
Views: 39853

Where do I put the 0104 key?
by silver calc
Sun 12 Nov, 2006 2:54 pm
Forum: Latenite, Brass and EarlyMorning
Topic: Brass 2: Dropping TASM backwards compatibility.
Replies: 26
Views: 39853

I tried that header, but it keeps telling me that page0 needs to be 16K long.
I tried this, but it still didn't work:

Code: Select all

.db $80, $0F				 ;Field: Program length
.db $00, $00, $40, $00	;Length
What am I doing wrong?
by silver calc
Sat 11 Nov, 2006 4:00 am
Forum: Latenite, Brass and EarlyMorning
Topic: Brass 2: Dropping TASM backwards compatibility.
Replies: 26
Views: 39853

benryves wrote:Probably with the WappSign COM interface as the current one does for the moment.
How do you get a working project using the included template? I tried to modify it but it doesn't produce a working application.
by silver calc
Fri 10 Nov, 2006 3:53 am
Forum: Announce Your Projects
Topic: Ti-83X
Replies: 4
Views: 3920

Ti-83X

As the poll question asks, I was thinking about increasing the 83p's capabilities to calculate similar to an 89's through either an asm program or a flash app. Functions I'm thinking about are simplifying equations(X*X -> X^2 and other simplifications), 'exact answer display' (similar to 'Pretty Pri...
by silver calc
Thu 09 Nov, 2006 5:14 am
Forum: Latenite, Brass and EarlyMorning
Topic: Brass 2: Dropping TASM backwards compatibility.
Replies: 26
Views: 39853

Will Brass2 (and LateNite) have support for apps (single and multi-page)?
by silver calc
Thu 09 Nov, 2006 5:11 am
Forum: Latenite, Brass and EarlyMorning
Topic: Latenite 2: Directory structure and project management.
Replies: 38
Views: 53614

How will the help files be read (similar or exactly like LateNite1, or a new methd)?