Search found 4 matches

by TestPleaseIgnore
Sun Sep 29, 2024 6:49 am
Forum: CX16 General Chat
Topic: The possibility of moving to a 65816 instead of a 6502
Replies: 29
Views: 8090

Re: The possibility of moving to a 65816 instead of a 6502

Since R47 the ROM detects and supports 65C816.
What is the memory map of the system in the 16-bit native mode?
by TestPleaseIgnore
Thu Aug 03, 2023 10:48 am
Forum: Misc Apps
Topic: Contest - Visual Controller Tester
Replies: 9
Views: 11156

Re: Contest - Visual Controller Tester

Dušan, maybe you hit the same issue with SNES controllers as I. I bought two controllers from aliexpress (the same page, the same SKU), and two from a czech online shop (at 5x cost). Of the four controllers, just one (the first one from ali) works flawlessly. The other three show a problem with the ...
by TestPleaseIgnore
Wed Jun 28, 2023 9:12 pm
Forum: Games
Topic: Crazy Tetrominoes
Replies: 9
Views: 4546

Re: Crazy Tetrominoes

Can you try changing these two lines of code: 130 SN=INT(RND(0)*7) 160 S=INT(RND(0)*7):CX=17:CY=13:GOSUB 2210:GOSUB 2000:SN=S to 130 SN=INT(RND(1)*7) 160 S=INT(RND(1)*7):CX=17:CY=13:GOSUB 2210:GOSUB 2000:SN=S and see if it works. Hi, I confirm that changing to RND(1) fixes the game. I checked in ME...
by TestPleaseIgnore
Tue Jun 27, 2023 8:32 pm
Forum: Games
Topic: Crazy Tetrominoes
Replies: 9
Views: 4546

Re: Crazy Tetrominoes

Hi Dušan, a small problem here: on hardware, I always get the same 2x2 box. See video: https://www.youtube.com/watch?v=rd-IF31aPGk I think this is caused by the RND(0) in the code, which always returns a constant on my machine. RND(1) seems to work OK. 20230627_222703.jpg What do you think? Jaroslav.