Search found 514 matches

by kelli217
Sat Apr 27, 2024 2:10 am
Forum: Creative Arts
Topic: zweifeld(VERA)
Replies: 4
Views: 333

Re: zweifeld(VERA)

Oh, is that the one that I reacted 🎶 to? Yeah, that's a good one.
by kelli217
Thu Apr 25, 2024 10:49 pm
Forum: Creative Arts
Topic: zweifeld(VERA)
Replies: 4
Views: 333

Re: zweifeld(VERA)

Video shows up as private-only here...
by kelli217
Thu Apr 25, 2024 10:27 pm
Forum: CX16 General Chat
Topic: New CX16 support for Ozmoo 14
Replies: 4
Views: 474

Re: New CX16 support for Ozmoo 14

We'll consider adding .prg to the executable file, if that's a convention on the Commander X16. It has arisen somewhat organically; to the X16, all files residing on the SD card are of type PRG (unless they're directories), so you can't tell which files are intended to be executable and which files...
by kelli217
Thu Apr 25, 2024 4:46 am
Forum: CX16 Hardware Support
Topic: Atari2SNES
Replies: 5
Views: 289

Re: Atari2SNES

I have actually just redesigned the PCB to make it a lot smaller. I was thinking about adding PCB mounted plugs for both the DB9 and the SNES controller. The issue is that if I add normal PCB mounted SNES connectors, I would need a cable with the same type of plug in both ends and I can not find th...
by kelli217
Thu Apr 25, 2024 4:24 am
Forum: Programming
Topic: call sys in basic: sys address,a,b
Replies: 8
Views: 359

Re: call sys in basic: sys address,a,b

When you call a machine language routine in assembly, you simply load the necessary values in the registers and perform a JSR to the address of the routine. LDA #$65 ;load accumulator with value $65 JSR $FFD2 ;jump-subroutine to CHROUT ($FFD2) When you do this from BASIC, you have no way to access t...
by kelli217
Tue Apr 23, 2024 12:42 am
Forum: Creative Arts
Topic: Sapphire Eyes(YM2151+VERA)
Replies: 6
Views: 368

Re: Sapphire Eyes(YM2151+VERA)

Just as back in the day, there was software that required more than the standard RAM size, there's no reason that shouldn't exist now. You wanna run with the big dogs, then you need more byte. This may or may not be possible with console systems. David has said that it's probably a good idea to tar...
by kelli217
Fri Apr 19, 2024 11:00 pm
Forum: CX16 Hardware Support
Topic: Writing to NIC at IO3-7 always writes a 9F. Read works fine.
Replies: 8
Views: 467

Re: Writing to NIC at IO3-7 always writes a 9F. Read works fine.

Since the upper significant byte of the address for all the IO spaces is $9F, it looks like your hardware is picking up that upper address byte (A8-A15) instead of the actual D0-D7 lines. Double-check your signal routing on the PCB, and the card slot pinout?
by kelli217
Fri Apr 19, 2024 6:11 am
Forum: CX16 General Chat
Topic: External 1541, no sdcard
Replies: 8
Views: 444

Re: External 1541, no sdcard

If that were the case, hitting RESET on the X16 would fix it, wouldn't it?
by kelli217
Sat Apr 13, 2024 12:25 am
Forum: Creative Arts
Topic: 3D Pinball
Replies: 2
Views: 223

Re: 3D Pinball

That manually-played version, would that be this? https://www.youtube.com/watch?v=RbdpBwxAC5w
by kelli217
Fri Apr 05, 2024 1:46 am
Forum: Programming
Topic: PLOT $FFF0 (x,y) with vpoke?
Replies: 24
Views: 822

Re: PLOT $FFF0 (x,y) with poke?

mortarm wrote: Thu Apr 04, 2024 6:27 pm
kelli217 wrote: Wed Apr 03, 2024 7:25 pm READCURSOR: POKE $030F, 1:REM SET CARRY BIT OF PROCESSOR STATUS SYS $FFF0 ROW = PEEK($030D) COLUMN = PEEK($030E)
If the coordinates are reversed, shouldn't ROW and COLUMN be reversed?
They are. $030D is the X register; $030E is the Y register.