Search found 1514 matches

by King Harold
Wed 03 Oct, 2012 5:44 pm
Forum: Off Topic
Topic: Post Your Internet speeds
Replies: 42
Views: 108653

Re: Post Your Internet speeds

Dude that's mobile, right? That always sucks.

I tried to speedtest again, but I consistently get weird results around 70MBit/s even though actual downloading and uploading can go faster than that.
by King Harold
Sun 20 Nov, 2011 12:06 pm
Forum: Programming Help
Topic: [TI ASM] Direct input and clearing before direct input
Replies: 2
Views: 13279

Re: [TI ASM] Direct input and clearing before direct input

The keypad thingy maintains a set of active groups, so if anything was already active, you're now reading from 2 (or more) groups at the same time. Typically group $BF or $7F or $FE would be the last active group (from scanning the entire keypad), and in none of those cases would 2nd clash with any ...
by King Harold
Thu 15 Sep, 2011 9:34 am
Forum: Off Topic
Topic: Captcha's?
Replies: 3
Views: 20810

Re: Captcha's?

Thanks, all good now :)
by King Harold
Wed 14 Sep, 2011 4:55 pm
Forum: Off Topic
Topic: Captcha's?
Replies: 3
Views: 20810

Captcha's?

So now we have to solve captcha's here? And how come it tells me I tried and failed to log in too often, how is zero times too often?
by King Harold
Tue 19 Jul, 2011 5:14 pm
Forum: Off Topic
Topic: This site is almost dead
Replies: 52
Views: 213030

Re: This site is almost dead

How did I miss the dutch TI board?!
There can never be more Dutch-speaking programmers than English-speaking programmers though, because all Dutch-speaking programmers also speak English :)

I've been up to nothing of consequence. Playing TF2 mostly..

btw what are catgirls?
by King Harold
Mon 18 Jul, 2011 10:18 am
Forum: Off Topic
Topic: This site is almost dead
Replies: 52
Views: 213030

Re: This site is almost dead

DJ Omnimaga wrote:It's also both Kllrnohj-free and allynfolksjr-free :P
Damn, I'm signing up.


@chickendude: yea a couple of years IIRC lol
by King Harold
Thu 14 Jul, 2011 12:40 pm
Forum: Off Topic
Topic: This site is almost dead
Replies: 52
Views: 213030

Re: This site is almost dead

I wouldn't really recommend Cemetech, btw
by King Harold
Sun 01 May, 2011 7:39 am
Forum: Programming Help
Topic: [TI ASM] atomics
Replies: 3
Views: 20841

Re: [TI ASM] atomics

Autocopy adds some more fun: rlc b,(ix+%001xx000) ; becomes sub a jr xx,0 You can change the xx bits to whatever, the jump has an offset of zero anyway so it's irrelevant. The result is in both Z and C flags. Downsides: kills A and B, and is pretty big (5 bytes if a ret is included) But that pattern...
by King Harold
Sun 01 May, 2011 4:33 am
Forum: Programming Help
Topic: [TI ASM] atomics
Replies: 3
Views: 20841

Re: [TI ASM] atomics

Yea I know that one, but as you can see it's a bit of a bother and it's only an option when the code in between is "fast enough" - and you can't transparently wrap any code in this, because you need "special code" to return something in A There is no "fetch-and-de/increment&...
by King Harold
Sat 30 Apr, 2011 3:37 pm
Forum: Programming Help
Topic: [TI ASM] atomics
Replies: 3
Views: 20841

[TI ASM] atomics

I've been working on threading on the z80 a bit, and I don't really like hacking around with di/ei all the time. It's especially annoying when you don't know whether interrupts are disabled already or not and you want to nice and leave them disabled. So I needed some atomic stuff to implement locks ...
by King Harold
Wed 30 Mar, 2011 3:15 pm
Forum: Off Topic
Topic: Post Your Internet speeds
Replies: 42
Views: 108653

Re: Post Your Internet speeds

Newest free upgrade (scheduled for April 1st actually, but hey I'm not complaining)
Image
Had to buy a new router though - the old one only had an 100mbit interface and that wouldn't have been enough :)
by King Harold
Mon 07 Mar, 2011 2:49 pm
Forum: Programming Help
Topic: [z80] Fastest long-division?
Replies: 2
Views: 15950

Re: [z80] Fastest long-division?

Ok I guess I'll just keep using this code
by King Harold
Fri 04 Mar, 2011 12:06 pm
Forum: Programming Help
Topic: [z80] Fastest long-division?
Replies: 2
Views: 15950

[z80] Fastest long-division?

I want to divide x<<128 by y. Of course, a full 256-by-128-bit division is not required, because the lower half of x<<128 is zero anyway (so we might as well start out with "remainder = x, result = 0") The code for that is this disaster: longdiv: ; divides big endian int128 at hl * 1<<128 ...
by King Harold
Tue 21 Dec, 2010 4:54 pm
Forum: Programming Help
Topic: Wabbitemu crashes when trying to open the debugger
Replies: 3
Views: 18850

Re: Wabbitemu crashes when trying to open the debugger

Thanks, that one works (at least so far) :)
by King Harold
Tue 21 Dec, 2010 12:21 pm
Forum: Programming Help
Topic: Wabbitemu crashes when trying to open the debugger
Replies: 3
Views: 18850

Wabbitemu crashes when trying to open the debugger

Wabbitemu crashes when trying to open the debugger.

What can I do about that?