Search found 1514 matches

by King Harold
Sun 27 Jun, 2010 2:03 pm
Forum: Programming Help
Topic: wabbitcode/studio basics
Replies: 31
Views: 50717

Re: wabbitcode/studio basics

That would be odd - at least, I don't remember editing it
by King Harold
Sat 26 Jun, 2010 9:48 pm
Forum: Programming Help
Topic: wabbitcode/studio basics
Replies: 31
Views: 50717

Re: wabbitcode/studio basics

What about the debug script? Does it looks something like this?

Code: Select all

; TI-83 Plus native script
reset-calc
run 6000000
key-press on 6000000
send-file "%PROJECT_DIR%\Bin\[some name here].8xk"
key-press clear
key-press 2nd
key-press 0
key-press apps
key-press apps
key-press apps
key-press 2
by King Harold
Sat 26 Jun, 2010 7:35 pm
Forum: Programming Help
Topic: wabbitcode/studio basics
Replies: 31
Views: 50717

Re: wabbitcode/studio basics

I always manually edit my debug script to debug the app in PindurTI, there is probably a way to automate the automation but I haven't found it (but I'm an idiot so it's probably possible anyway)
Don't know about wabbitemu, I've gotten it to run but I have never tried to debug anything with it..
by King Harold
Wed 02 Jun, 2010 10:59 am
Forum: Programming Help
Topic: wabbitcode/studio basics
Replies: 31
Views: 50717

Re: wabbitcode/studio basics

Latenite can certainly build apps, although you need a rather nasty hack if you're on a 64bit system (like me) Anyway, it should come with an "App project" by default, which IIRC just works, but otherwise, here is a setup that works (for me) Build script: @ECHO OFF SET PLATFORM=ti8x SET SH...
by King Harold
Mon 31 May, 2010 4:57 pm
Forum: Programming Help
Topic: wabbitcode/studio basics
Replies: 31
Views: 50717

Re: wabbitcode/studio basics

The flash debugger isn't great Understatement of the year :) What's wrong with Latenite, though? It works fine for me - and we know how it works, we don't know how wabbitcode works, well maybe someone here does but they haven't said so I don't know about ZDS, I've only used TASM (sucks) and various...
by King Harold
Fri 28 May, 2010 8:55 pm
Forum: Off Topic
Topic: Hello All
Replies: 5
Views: 13988

Re: Hello All

puromtec wrote:Some guy pointed me to this site from another programming forum I use a lot.
Would that be CodeProject?
by King Harold
Wed 10 Mar, 2010 7:05 pm
Forum: Programming Help
Topic: [TI ASM] Reading the Ans Variable
Replies: 11
Views: 17593

Re: [TI ASM] Reading the Ans Variable

Grats
Do you need more help optimizing it?
by King Harold
Wed 10 Mar, 2010 5:21 pm
Forum: Programming Help
Topic: [TI ASM] Reading the Ans Variable
Replies: 11
Views: 17593

Re: [TI ASM] Reading the Ans Variable

Code: Select all

   B_CALL(_RclVarSym)
   LD D, A
D and A are both "garbage" now
IOW you're skipping a ConvOP1
by King Harold
Wed 10 Mar, 2010 2:04 pm
Forum: Programming Help
Topic: [TI ASM] Reading the Ans Variable
Replies: 11
Views: 17593

Re: [TI ASM] Reading the Ans Variable

AF HL DE and BC are destroyed by the RclVarSym but as far as I know the LSB part of the recaaled variable is stored to A...right? If that is so, then it is not documented. POP AF LD H, A POP AF LD L, A equivalent to pop hl pop af ld l,a (you could do the same for DE by restructuring the code) The p...
by King Harold
Mon 08 Mar, 2010 10:31 pm
Forum: Programming Help
Topic: [TI ASM] Reading the Ans Variable
Replies: 11
Views: 17593

Re: [TI ASM] Reading the Ans Variable

Actually, my native language is Dutch - imagine the odds I don't have a lot of time right now and I will have a closer look at it later, one thing I can say already though is that you can replace something like cp 0 jr z, somewhere cp 1 jr z, somewhere else etc With or a jr z, somewhere ; a|a==a so ...
by King Harold
Sun 07 Mar, 2010 2:23 pm
Forum: Programming Help
Topic: [TI ASM] Reading the Ans Variable
Replies: 11
Views: 17593

Re: [TI ASM] Reading the Ans Variable

You could use RclAns and ConvOP1
by King Harold
Sat 26 Dec, 2009 6:24 pm
Forum: Programming Help
Topic: [ASM] 68000
Replies: 1
Views: 8250

Re: [ASM] 68000

1) Sounds like a piece of cake, there is a mul[u/s] instruction so you don't even have to write a multiplication routine 2) That's easy on pretty much every processor I've worked with Such as: (not optimized or tested, just written in half a minute) ld hl,$4000 ld d,$80 ;result at 8000 - 807F ld b,l...
by King Harold
Wed 23 Dec, 2009 8:13 pm
Forum: Announce Your Projects
Topic: WabbitCode for the Mac
Replies: 3
Views: 10642

Re: WabbitCode for the Mac

Very nice, too bad it's Mac :)
by King Harold
Thu 17 Dec, 2009 7:05 pm
Forum: Programming Help
Topic: [C] GUIs
Replies: 7
Views: 17781

Re: [C] GUIs

I wouldn't call much about WPF nice - except perhaps some of the resulting graphics. On the other hand, WPF apps usually end up looking like a flash ad, and even when they don't the text rendering is broken by default (has been fixed very recently) and ignores your ClearType setting just for laughs ...
by King Harold
Wed 09 Dec, 2009 12:38 am
Forum: Announce Your Projects
Topic: supaplex
Replies: 26
Views: 47915

Re: supaplex

Well be careful, you haven't compressed something until you can decompress it :)

What compression techniques are you using?