Search found 2459 matches

by Jim e
Tue 26 Feb, 2008 5:23 am
Forum: Off Topic
Topic: Dead forums (lively thread)
Replies: 123
Views: 290850

I blame everyone but me.
by Jim e
Wed 13 Feb, 2008 4:27 pm
Forum: Programming Help
Topic: [emulation] hardware emulation trouble?
Replies: 21
Views: 25636

Thats the interrupt. Once the z80 interrupts it disables interrupts so nothing recurses, you might have it so interrupts aren't disabled and therefore sticks to 006A.
by Jim e
Tue 12 Feb, 2008 8:32 pm
Forum: Programming Help
Topic: [emulation] hardware emulation trouble?
Replies: 21
Views: 25636

What are you emulating, 83, 83+, SEs? For the 83+: The link port can will work with a register that returns an inverted value of what was written. The key port can get away with 0xFF Status can read 0x3B. Port 3 just needs to be a register as bare minimum. As long as interrupts occur at a steady rat...
by Jim e
Sat 02 Feb, 2008 7:13 pm
Forum: Staff Side Projects & Featured Projects
Topic: [Featured][Dev] PindurTI (Best Thread 2005)
Replies: 1356
Views: 547383

Besides PTI emulates all hardware and hardware quirks that should be emulated. Not every little detail that exists. Theres a lot of quirks which have no benefit to developing. I’d still try to emulate as many as possible, but I have no 83+ myself, which puts a limit to this kind of activity....
by Jim e
Wed 16 Jan, 2008 6:39 pm
Forum: Off Topic
Topic: Smash Bros Brawl
Replies: 154
Views: 311939

don't make a release date until you can keep it Those release dates aren't really made by the developers though. If its not delayed, theres a better chance that it was forced out the door rather than baked properly. Not that all games not delayed are crap or that games that are delayed significantl...
by Jim e
Sat 12 Jan, 2008 8:08 pm
Forum: Off Topic
Topic: topic content deleted
Replies: 50
Views: 92325

You're beating a dead horse.
by Jim e
Sat 12 Jan, 2008 12:17 pm
Forum: Off Topic
Topic: topic content deleted
Replies: 50
Views: 92325

I don't see any insults against him, kv83 expressed himself coldly, but thats how he's always been. Just because Kevin reacted badly doesn't mean theres malice here. It's nice of you guys to try to defend him but everyone pretty much knew he was going to do this from the start.
by Jim e
Fri 11 Jan, 2008 1:11 pm
Forum: Off Topic
Topic: topic content deleted
Replies: 50
Views: 92325

DJ Omnimaga wrote:It's people who make everything to make me overeact.
No one makes you do anything. You're responsible for all your actions and their consequences. This is true for every single person, regardless of situation, except those who are not functionally competent.
by Jim e
Wed 09 Jan, 2008 6:05 am
Forum: Off Topic
Topic: topic content deleted
Replies: 50
Views: 92325

Also, it is not humanly possible to have this wide a variety of people all pissed off with you at the same time: [...] brandonw [...] Andy [...] JoelS, threefingeredguy, KermMartian, sjrberg (MissingIntellect) [...] NanoWar [...] Yeah, honestly I'm a little shocked Nano's on there, and for somethin...
by Jim e
Mon 07 Jan, 2008 9:59 am
Forum: Off Topic
Topic: topic content deleted
Replies: 50
Views: 92325

So you banned spengo for commenting on skipping cut screens?
by Jim e
Sat 05 Jan, 2008 11:41 am
Forum: Off Topic
Topic: topic content deleted
Replies: 50
Views: 92325

Its a real shame how #tcpa has detriorated into nothing more than a trolling contest. The only people i can see keeping the calc side of things alive is maybe Brandon and Andy. Aside from Brandon and maybe a couple of others it's just not worth logging on to tcpa anymore. It rarely has any insightf...
by Jim e
Fri 04 Jan, 2008 11:36 pm
Forum: Off Topic
Topic: topic content deleted
Replies: 50
Views: 92325

It would be a little like saying "Because you just criticized me, I'm going to stop working on Zelda forever." But I wouldn't do that, that would be silly. Everybody gets criticism, it's something you have to learn to live with. Oi, actually you improve it a lot when you get criticisms. B...
by Jim e
Tue 01 Jan, 2008 7:12 pm
Forum: Off Topic
Topic: topic content deleted
Replies: 50
Views: 92325

This just saddens me.
by Jim e
Fri 14 Dec, 2007 2:46 am
Forum: Programming Help
Topic: [ASM] Compare 16-bit registers?
Replies: 27
Views: 30429

What about doing it byte by byte? ld a,d cp b jp c,bcIsBigger jp nz,deIsBigger ld a,e cp c jp c,bcIsBigger jp nz,deIsBigger <they are equal here> Another way of doing it byte by byte: ld a, e sub c ld a, d sbc a, b Carry flag set if BC > DE. Zero flag set if BC == DE. Pretty sure that doesn't work....
by Jim e
Fri 07 Dec, 2007 11:20 am
Forum: Programming Help
Topic: [ASM] How to ld hl,sp?
Replies: 13
Views: 16376

That one on ticalc is really bad. Tabulation cropped off the last digit on a lot of opcodes.