Search found 559 matches

by Dwedit
Mon 03 Mar, 2008 2:13 am
Forum: Programming Help
Topic: Make ion progs in C.
Replies: 13
Views: 8781

There is a 0xC000 limit, because Texas Instruments is evil. Maybe you need to make an app.
by Dwedit
Mon 03 Mar, 2008 1:00 am
Forum: Programming Help
Topic: Make ion progs in C.
Replies: 13
Views: 8781

Maybe uncomment the BB 6D part
by Dwedit
Sun 02 Mar, 2008 11:43 pm
Forum: Programming Help
Topic: Make ion progs in C.
Replies: 13
Views: 8781

Try hacking away at the crt0 file
by Dwedit
Fri 29 Feb, 2008 1:33 am
Forum: Off Topic
Topic: Dead forums (lively thread)
Replies: 123
Views: 376710

As usual, it's still work on PocketNES, Goomba Color, and SMSAdvance for me...
by Dwedit
Mon 25 Feb, 2008 7:30 pm
Forum: Programming Help
Topic: fast and simple question
Replies: 3
Views: 3255

You need the TI-Graph Link *software* to create TI basic programs on your PC. Any TI graph link or TI connect software will you let you send programs, but only the old TI-Graph link software lets you write programs on the PC.
by Dwedit
Fri 22 Feb, 2008 9:06 pm
Forum: Off Topic
Topic: Disturbing C: interleaved Switch and While
Replies: 7
Views: 9089

The best method for practical programming is to just call memset or memcpy, those functions are ASM optimized like crazy.
by Dwedit
Fri 22 Feb, 2008 8:36 pm
Forum: Off Topic
Topic: Disturbing C: interleaved Switch and While
Replies: 7
Views: 9089

I like how that code writes repeatedly to the same destination address.
by Dwedit
Wed 13 Feb, 2008 11:25 pm
Forum: Programming Help
Topic: [emulation] hardware emulation trouble?
Replies: 21
Views: 32871

That is weird, since 0029 is a bunch of nops.
by Dwedit
Wed 13 Feb, 2008 8:29 pm
Forum: Programming Help
Topic: [emulation] hardware emulation trouble?
Replies: 21
Views: 32871

It's in a loop waiting for the LCD controller to return bit 7 clear.

Here's the Listing File of the bootloader so you don't need a disassembly.
by Dwedit
Wed 13 Feb, 2008 8:12 pm
Forum: Programming Help
Topic: [emulation] hardware emulation trouble?
Replies: 21
Views: 32871

Does it boot past that point?
by Dwedit
Wed 13 Feb, 2008 7:26 pm
Forum: Programming Help
Topic: [emulation] hardware emulation trouble?
Replies: 21
Views: 32871

0092 005E ;clear memory 0093 005E 21 00 80 ld hl,$8000 0094 0061 11 01 80 ld de,$8001 0095 0064 36 00 ld (hl),0 0096 0066 01 FF 7F ld bc,$7FFF 0097 0069 ED B0 ldir 0098 006B ;copy appended program 0099 006B 11 27 93 ld de,$9327 0100 006E 21 BB 00 ld hl,end 0101 0071 01 00 6C ld bc,$6C00 0102 0074 E...
by Dwedit
Tue 12 Feb, 2008 8:48 pm
Forum: Programming Help
Topic: [emulation] hardware emulation trouble?
Replies: 21
Views: 32871

My emulator had problems with ld bc,(nnnn) and ld (nnnn),bc having an incorrect address, and that made the TIOS (rightfully!) fail.
You may want to try the Bubble Bobble ROM to see if that works. (This is a TI83 OS, but the ports look like they should match up)
by Dwedit
Tue 12 Feb, 2008 3:43 am
Forum: Programming Help
Topic: [emulation] hardware emulation trouble?
Replies: 21
Views: 32871

Execution in 6xxx is definitely normal, that's the switchable rom page.
by Dwedit
Sat 02 Feb, 2008 12:37 am
Forum: Programming Help
Topic: [html/css] Fixed position vertically/ absolute horizontally
Replies: 1
Views: 3086

nested tags?
by Dwedit
Sat 26 Jan, 2008 11:43 pm
Forum: Programming Help
Topic: Assembling an Asm File (answered)
Replies: 19
Views: 15737

Make sure you're using the Win32 console version of TASM, not the DOS version.