Search found 116 matches

by utz
Sun Jul 26, 2020 12:43 pm
Forum: Website
Topic: Certificate errors on www.spectrumcomputing.co.uk
Replies: 7
Views: 939

Re: Certificate errors on www.spectrumcomputing.co.uk

Works for me now :)
by utz
Sun Jul 26, 2020 10:31 am
Forum: Website
Topic: Certificate errors on www.spectrumcomputing.co.uk
Replies: 7
Views: 939

Re: Certificate errors on www.spectrumcomputing.co.uk

I can confirm the issue. The cert seems valid for https://spectrumcomputing.co.uk only. Nothing to do with Google, happens when typing www... directly into the address bar. www.spectrumcomputing.co.uk uses an invalid security certificate. The certificate is only valid for spectrumcomputing.co.uk. Er...
by utz
Sat Jul 18, 2020 12:33 am
Forum: Showcase your work!
Topic: Learning Assembly Project
Replies: 5
Views: 1926

Re: Learning Assembly Project

Ha, that actually looks like you're past the "learning Assembly" stage, and are now headed for the "having fun with Assembly" stage :D
by utz
Wed Jul 15, 2020 1:22 pm
Forum: Announcements
Topic: SC Retro
Replies: 122
Views: 33663

Re: SC Retro

Hmm, "micro", that's something I could get behind, too.
Other than that, "lite" is still my one of my favourites (though it basically was rejected already), and of course [mention]Juan F. Ramirez[/mention]' glorious "16K".
by utz
Wed Jul 15, 2020 12:42 am
Forum: Announcements
Topic: SC Retro
Replies: 122
Views: 33663

Re: SC Retro

Juan F. Ramirez wrote: Tue Jul 14, 2020 11:21 pm 16K
We have a winner. :D
by utz
Sun Jul 12, 2020 10:32 pm
Forum: Programming
Topic: (z80 assembler) Disabling break?
Replies: 3
Views: 790

Re: (z80 assembler) Disabling break?

In other words, it's disabled by default in assembly ;)
by utz
Sun Jul 12, 2020 3:57 pm
Forum: Announcements
Topic: SC Retro
Replies: 122
Views: 33663

Re: SC Retro

Media queries are so 2019 :mrgreen: flex-grow/flex-shrink is all the hype now.

Another vote for the v3 banner, btw. In fact I'd like it to be even smaller.
by utz
Sat Jul 11, 2020 12:16 am
Forum: Announcements
Topic: SC Retro
Replies: 122
Views: 33663

Re: SC Retro

Also +1 to @8BitAG's suggestion. I'm rather allergic to the word "retro". I don't get why you guys don't like word "retro". Personally I have no problem with calling myself and my interests retro, oldschool and vintage ;) And people seem generally to like this words too. Especia...
by utz
Fri Jul 10, 2020 11:52 pm
Forum: Music
Topic: Fast AY music players?
Replies: 18
Views: 15925

Re: Fast AY music players?

If anyone has need for music for a custom AY player for which no dedicated editor is available, I will be able to support those in Bintracker soon (in a couple of months). So just get in touch if need arises!
by utz
Fri Jul 10, 2020 9:50 pm
Forum: Announcements
Topic: SC Retro
Replies: 122
Views: 33663

Re: SC Retro

Here's an initial version: https://spectrumcomputing.co.uk/retro/4087 It should work for any game page URL from SC, just replace "entry" with "retro". I know some fields are still missing, don't worry about it, I will take care of these details later. Next step will be adding a ...
by utz
Wed Jul 08, 2020 3:50 pm
Forum: Programming
Topic: Issues using zx7
Replies: 15
Views: 1831

Re: Issues using zx7

Difficult to say without seeing the code. Perhaps you could post it somewhere so people on here can take a look?
by utz
Wed Jul 08, 2020 3:41 pm
Forum: ZXDB Discussion
Topic: New WoS and ZXDB
Replies: 258
Views: 58538

Re: New WoS and ZXDB

+1 to what [mention]akeley[/mention] said. As has been demonstrated countless times in the past, Lee and his clique aren't interested in a rational discussion, so arguing with them is a waste of time. Other than that there's no need to defend yourself [mention]Einar Saukas[/mention], you've done mor...
by utz
Mon Jul 06, 2020 11:08 am
Forum: Programming
Topic: Help me understand the use of 'AND' here
Replies: 22
Views: 2377

Re: Help me understand the use of 'AND' here

It's especially helpful in cases like the one you were struggeling with with "and 31" and "first 8K of ROM". The decimal numbers 31 and 8191 tell you nothing. 0x1f and 0x1fff on the other hand immediately let you see that you don't need to worry about the low byte. Or take PeterJ...
by utz
Sun Jul 05, 2020 3:36 pm
Forum: Programming
Topic: Help me understand the use of 'AND' here
Replies: 22
Views: 2377

Re: Help me understand the use of 'AND' here

"8K" = 8192 bytes. So the first "8K of ROM" means an address between 0 and 8191. 8191 = %11111 11111111, or 0x1fff. We don't need to worry about the lower 8 bits, since they may take any value. The upper 8 bits on the other hand must have a value between 0 - %11111, or 0 - 0x1f, ...
by utz
Sun Jul 05, 2020 3:20 pm
Forum: Programming
Topic: Help me understand the use of 'AND' here
Replies: 22
Views: 2377

Re: Help me understand the use of 'AND' here

a) does this have bias on larger numbers (ie. if a>=31; AND 31 would always equal 31 ???)? No. A logical AND operates on individual bits. The result of ANDing two bits is 1 if and only if both of the pair of bits are 1. %00110001 (= 49 decimal) AND %00000111 (= 7 decimal) ========================= ...
by utz
Sat Jul 04, 2020 7:48 pm
Forum: Programming
Topic: Help with attributes and logical and (z80 assembler)
Replies: 19
Views: 2327

Re: Help with attributes and logical and (z80 assembler)

Thank you @utz. I will need to look at that one written down in binary so I understand! Hehe, I was thinking whether I should give an explanation, but I figured you could work it out on your own. And ideed you immediately had the right idea: Looking at the number in binary will give you the answer ...
by utz
Sat Jul 04, 2020 6:09 pm
Forum: Programming
Topic: Help with attributes and logical and (z80 assembler)
Replies: 19
Views: 2327

Re: Help with attributes and logical and (z80 assembler)

Thanks @bob_fossil You made me have a thought. I foolishly forgot that the grey is paper white without the bright. Apologies. I will look at the option you suggest, which would certainly be an improvement. So if I create a random number between 0 and 7 with and 7, then do a bit rotate 3 times would...
by utz
Sat Jul 04, 2020 4:14 pm
Forum: Programming
Topic: Suggestions on formatting of code
Replies: 56
Views: 7899

Re: Suggestions on formatting of code

A round of appreciation for Einar's z80table! Opening that up is pretty much always my first action when doing any serious Z80 coding.
by utz
Sat Jul 04, 2020 3:57 pm
Forum: Emulators
Topic: Zymosis and ZXEmuT
Replies: 20
Views: 5705

Re: Zymosis and ZXEmuT

Ha, you're a machine. Thanks a lot. I think with this setup, only minimal changes will be required on the Bintracker side, as I can send pretty much the same messages that I'm sending to MAME. Just need to write a Tcl script to decode them on ZXEmuT. That'll be fun.
by utz
Sat Jul 04, 2020 1:02 pm
Forum: Emulators
Topic: Zymosis and ZXEmuT
Replies: 20
Views: 5705

Re: Zymosis and ZXEmuT

On second thought, it actually doesn't need to work on Windows. MAME will stay the default for Spectrum emulation, with ZXEmuT being an additional option. Windows users will miss out on it then, but well, tough luck :D If you could implement calling Tcl code on hitting breakpoints, that would be awe...
by utz
Sat Jul 04, 2020 11:38 am
Forum: Emulators
Topic: Zymosis and ZXEmuT
Replies: 20
Views: 5705

Re: Zymosis and ZXEmuT

A Tcl interpreter, you say? Excellent! That should be quite workable. I'm controlling MAME through a stdio pipe. I could in theory do sockets, but it needs to work on Windows as well, so pipe is easier to do for me, I believe. One feature that would be great to have is to be able to execute code on ...
by utz
Sat Jul 04, 2020 9:42 am
Forum: Emulators
Topic: Zymosis and ZXEmuT
Replies: 20
Views: 5705

Re: Zymosis and ZXEmuT

Is it possible to control ZXEmuT through stdin? If so, I could actually use it as an alternative to MAME in my Bintracker music editor.
by utz
Fri Jul 03, 2020 10:14 am
Forum: Programming
Topic: Suggestions on formatting of code
Replies: 56
Views: 7899

Re: Suggestions on formatting of code

What a waste. That key should be remapped as a second Ctrl key, of course :mrgreen:
by utz
Thu Jul 02, 2020 9:57 pm
Forum: Programming
Topic: Suggestions on formatting of code
Replies: 56
Views: 7899

Re: Suggestions on formatting of code

So no-one indenting for loops, conditional code etc ??? it is not even always possible, considering that jumps can create a fine web. it is much easier (and cleaner, i believe) to split the code to "logical blocks" with empty lines. Exactly, it's not always possible/useful to apply best f...
by utz
Tue Jun 16, 2020 11:47 pm
Forum: Emulators
Topic: Zymosis and ZXEmuT
Replies: 20
Views: 5705

Re: Zymosis and ZXEmuT

Ah yes, I studied Zymosis quite extensively when I wrote my own z80 emulation library a few years ago. It's an excellent piece of code. Glad to see you're still working on it.