Search found 347 matches

by Spencer
Thu 01 Nov, 2007 5:40 am
Forum: Announce Your Projects
Topic: Monopoly
Replies: 203
Views: 186112

tr1p1ea wrote:Similar to the feeling you get when you fix a long standing bug :).
Rage?
by Spencer
Sun 28 Oct, 2007 11:44 pm
Forum: Announce Your Projects
Topic: Reviving the Vera project!
Replies: 129
Views: 205651

What is that icon on the titlescreen?

Also you're not using the 6-bit word mode on the LCD? It has that mode specifically for text.
by Spencer
Wed 10 Oct, 2007 12:03 am
Forum: Programming Help
Topic: [Z80-asm] Advise about tilemapping
Replies: 27
Views: 21726

I forget how Zelda's works, but its superior to jim's.
by Spencer
Sat 29 Sep, 2007 4:38 pm
Forum: General TI Discussion
Topic: I just got this email:
Replies: 16
Views: 30062

well what are you waiting for, I bet he has a title screen ready for you
by Spencer
Sun 23 Sep, 2007 7:32 pm
Forum: Programming Help
Topic: [Z80 ASM] Multiplication macro idea
Replies: 4
Views: 3701

Jim and I wrote one for spasm a while ago. Maybe you can create something like this #macro multhlfast( num ) #define mfstart 0 muloop(15) #if mfstart=0 \ ld hl,0 \ #endif #endmacro #define muloop( loop ) #if loop >= 0\ do_mul( 1<<loop )\ muloop( eval( loop-1) )\ #endif #macro do_mul(bit) #if mfstart...
by Spencer
Fri 14 Sep, 2007 7:50 am
Forum: Pixel Art
Topic: [Elementz] Title Screen
Replies: 5
Views: 12451

We can't do attachments on this forum?

Image

you're welcome
by Spencer
Wed 12 Sep, 2007 6:11 am
Forum: Programming Help
Topic: [Win32] OLE IDataObject interface (SetData)
Replies: 4
Views: 4395

I've got the solution and it's not as simple as I thought. Refer to http://msdn2.microsoft.com/en-us/library/ms997502.aspx for details.

I can't believe that result was never in the top 50 on google. The result of this, anyway, is

Image
by Spencer
Tue 11 Sep, 2007 7:54 am
Forum: Programming Help
Topic: [Win32] OLE IDataObject interface (SetData)
Replies: 4
Views: 4395

[Win32] OLE IDataObject interface (SetData)

I figure Cobb or Ben might have some insight into this. A Windows interface called IDragSourceHelper can draw transparent images during drag and drop. It's what's responsible for transparent icons when you drag column headings or files around in Windows 2000 and up. To get started, it only requires ...
by Spencer
Thu 30 Aug, 2007 2:01 am
Forum: Latenite, Brass and EarlyMorning
Topic: EarlyMorning - Progress & Discussion
Replies: 176
Views: 189960

How does this work? I can't figure out how to import bitmaps or even copy and paste images in. I like the arbitrary zoom. Buildscript wizards looks great and generates buildscript_new.txt -- but crashes when I click finish twice ("index was outside the bounds of the array"). The first time...
by Spencer
Tue 28 Aug, 2007 4:55 am
Forum: Programming Help
Topic: [TI-ASM] key scanner with low values
Replies: 19
Views: 13585

Any optimization I did was a side effect. Readability is what really matters. Especially when you share code, it's gotta be quick to understand.

Luckily Z80 assembly is one of those rare mediums in which the most optimized code is also good style.
by Spencer
Sun 26 Aug, 2007 4:18 pm
Forum: Programming Help
Topic: [TI-ASM] key scanner with low values
Replies: 19
Views: 13585

Ah I see what you meant to do. SLL doesn't exist as its mnemonic suggests, you oughta use SL1 (they're the same binary). #define make16(vh, vl) vh << 8 + vl ld bc,make16(7, 1) ld de,make16($FF, $FF) ld hl,make16(8, 1) input_loop: out (c),e out (c),d sl1 d in a,(1) xor e jr nz,bit_to_value ld a,l add...
by Spencer
Sun 26 Aug, 2007 3:01 am
Forum: Programming Help
Topic: [TI-ASM] key scanner with low values
Replies: 19
Views: 13585

Thanx for optimizing it ;) *goes to upgrade my code* edit: d has got to be $FE though, not $FF It's $FF, since the value is shifted first before being output. I overused reusable labels a bit because well, they are reusable anyway, and they don't hurt do they? That's not the point -- they hurt peop...
by Spencer
Fri 24 Aug, 2007 1:45 am
Forum: Programming Help
Topic: [TI-ASM] key scanner with low values
Replies: 19
Views: 13585

#define make16(vh, vl) vh << 8 + vl ld bc,make16(7, 1) ld de,make16($FF, $FF) ld hl,make16(8, 1) input_loop: out (c),e sll d out (c),d in a,(1) xor e jr nz,bit_to_value ld a,l add a,h ld l,a djnz input_loop xor a ret bit_to_value: inc l rra jr nc,bit_to_value ld a,l ret Don't overuse temp labels
by Spencer
Thu 02 Aug, 2007 11:55 pm
Forum: General TI Discussion
Topic: Reading from the LCD - emulators get it wrong
Replies: 5
Views: 7705

I've modified Wabbitemu to return a value according to your findings. Who can verify the other models?
by Spencer
Fri 06 Jul, 2007 12:32 am
Forum: Off Topic
Topic: I have decided.....
Replies: 28
Views: 18439

Nah, any file hosted on your server not too long ago is gone.