Search found 1414 matches

by AndyC
Sun Dec 17, 2017 5:55 pm
Forum: Preservation
Topic: File permissions.
Replies: 54
Views: 13719

Re: File permissions.

As far as I can see Joefish would like: 1/ To retain copyright; 2/ To allow SC to distribute the title for free; and 3/ Not grant other sites distribution rights. Which is the right categorisation for this? It certainly should not be freeware. That is the definition of freeware, the fact the author...
by AndyC
Sat Dec 16, 2017 10:27 pm
Forum: Games/Software
Topic: Poll: Games by Costa Panayi
Replies: 13
Views: 3486

Re: Poll: Games by Costa Panayi

Joefish wrote: Sat Dec 16, 2017 10:25 pm What about Cyclone? That was a better game than TLL.
I saw the thread title and thought "Well that'll be Cyclone as #1 then". Shocked to see it missed off, one of the best games on the 8 bits full stop.
by AndyC
Thu Dec 14, 2017 8:46 am
Forum: Games/Software
Topic: The A-Z of the best Speccy games (classic: 1982-1993)
Replies: 58
Views: 12918

Re: The A-Z of the best Speccy games (classic: 1982-1993)

Einar Saukas wrote: Wed Dec 13, 2017 10:15 pm
AndyC wrote: Wed Dec 13, 2017 10:04 pmI think the only choice I'm not conflicted with is ZZoom and only because I wasn't a fan of Zombie Zombie.
Better than Zynaps?
Well now I have none. Dammit.
by AndyC
Wed Dec 13, 2017 10:04 pm
Forum: Games/Software
Topic: The A-Z of the best Speccy games (classic: 1982-1993)
Replies: 58
Views: 12918

Re: The A-Z of the best Speccy games (classic: 1982-1993)

So difficult to pick. R-Type feels like it deserves a place, but that excludes Robocop and Rainbow Islands. I think the only choice I'm not conflicted with is ZZoom and only because I wasn't a fan of Zombie Zombie.
by AndyC
Sat Dec 09, 2017 12:31 pm
Forum: Programming
Topic: 128k paging BASIC loader
Replies: 24
Views: 6821

Re: 128k paging BASIC loader

This is the scenario: Stack below 24064, main code fills 24064 up to the top, including vector table at 65024 in main (=bank 0?) filled with db 253, JPs to interrupt routine at 32768. Interrupt routine will page in bank 1, call AY music there, then page bank 0 back in. If you're using an original 1...
by AndyC
Wed Dec 06, 2017 8:13 pm
Forum: Programming
Topic: Daft question about interrupts...
Replies: 5
Views: 2204

Re: Daft question about interrupts...

No. As long as the I register is outside the $40–$7f range, you’re good. Also, the kosher way to return from an ISR is RETI, not RET. ;) Not strictly true. If you set the I register to a value between $C0 and $FF and have contended memory paged in at $C000 you will crash an old school 128K (but not...
by AndyC
Thu Nov 30, 2017 1:30 pm
Forum: Games/Software
Topic: Poll: Manic Miner vs Jet Set Willy
Replies: 22
Views: 6045

Re: Poll: Manic Miner vs Jet Set Willy

Has to be Jet Set Willy, it was probably the first exposure to truly "open world" games and provided endless fascination just wandering off to find new rooms - trying to actually complete it wasn't even part of why I played it back in the day (though I have done since). Not until the likes...
by AndyC
Mon Nov 27, 2017 11:46 pm
Forum: Programming
Topic: Register Addressing Modes
Replies: 8
Views: 2643

Re: Register Addressing Modes

Memory Indirect would suggest a level of double indirection, in the same way that Register Indirect does. So if ADDR was 4000h and the value stored at 4000h was 8000h, the a memory indirect load would fetch the byte from 8000h. That's not something the Z80 supports. LD A, (ADDR) is just plain old in...
by AndyC
Sun Nov 26, 2017 8:26 am
Forum: Programming
Topic: Missed Interrupts with DI+IM2 in assembly
Replies: 12
Views: 4409

Re: Missed Interrupts with DI+IM2 in assembly

The Gate Array in the CPC holds the interrupt line until the Z80 acknowledges it, which is why you won't miss an interrupt there (well unless you DI for long enough that multiple interrupts fire). IIRC the Speccy, in contrast, just pulses the interrupt line at the start of the frame. That has the ad...
by AndyC
Fri Nov 17, 2017 9:37 pm
Forum: Games/Software
Topic: The Great Giana Sisters...
Replies: 15
Views: 5557

Re: The Great Giana Sisters...

Honestly, there's a pretty good reason Nintendo weren't happy about it. It's a fairly terrible game on all platforms.
by AndyC
Tue Nov 14, 2017 6:42 pm
Forum: Sinclair Miscellaneous
Topic: World of Spectrum....
Replies: 162
Views: 44906

Re: World of Spectrum....

I suspect now is not the time to have that conversation, everything is still a bit raw, but I'd much rather a forum that allowed discussions about the wider scene (warts and all) than one which arbitrarily shuts down conversation without justification.
by AndyC
Tue Nov 14, 2017 6:39 pm
Forum: Games/Software
Topic: Best 128K exclusive games
Replies: 3
Views: 2513

Re: Best 128K exclusive games

Robocop 2 and Where Time Stood Still are the two that immediately spring to mind.
by AndyC
Tue Nov 14, 2017 6:34 pm
Forum: Showcase your work!
Topic: Edge Grinder for the Spectrum
Replies: 20
Views: 8124

Re: Edge Grinder for the Spectrum

If you need the AY routine to be called at 50fps but don't want to wait for HALTs, why not just call it from within the interrupt handler itself? Your music might go iffy I suppose if you DI for too long, but that's probably as true for any other strategy. Alternatively count frames in the interrupt...
by AndyC
Mon Nov 13, 2017 11:53 pm
Forum: Showcase your work!
Topic: Edge Grinder for the Spectrum
Replies: 20
Views: 8124

Re: Edge Grinder for the Spectrum

There was definitely some talk of how you could do it, back when the game originally came out for the C64 and CPC. Don't remember anyway actually starting it though. Looking forward to seeing how it comes out. :)