Search found 312 matches

by DragWx
Mon May 13, 2024 1:18 am
Forum: WIP Demos
Topic: "twin stick" shooting experiment
Replies: 5
Views: 197

Re: "twin stick" shooting experiment

I imagine the actual game engine would use key-down and key-up events instead of character input events, which would allow diagonals.
by DragWx
Tue May 07, 2024 4:28 pm
Forum: Demoscene
Topic: Confetti2 - created by accident
Replies: 3
Views: 174

Re: Confetti2 - created by accident

There's something about printing random characters in random colors all over the screen that really brings me back to being a kid messing around in qbasic. :D
by DragWx
Fri May 03, 2024 10:09 pm
Forum: WIP Demos
Topic: "twin stick" shooting experiment
Replies: 5
Views: 197

Re: "twin stick" shooting experiment

It's not awkward at all. In fact, I was certain keyboard movement + mouse aiming was a common control scheme for 2D shooting games, twin-stick or otherwise. I know this is just for demonstration purposes, but you would definitely want to change the mouse cursor to something more see-through, like a ...
by DragWx
Sun Apr 28, 2024 7:20 pm
Forum: CX16 Hardware Support
Topic: Wont Power Up
Replies: 2
Views: 269

Re: Wont Power Up

If multiple ATX power supplies are immediately powering off after powering on, that makes me think there's a short on the board somewhere.

By any chance, did you try powering up your board before it went into the case?
by DragWx
Sun Apr 28, 2024 5:49 am
Forum: General Retro Chat
Topic: Zilog is discontinuing their production of the Z80
Replies: 2
Views: 305

Zilog is discontinuing their production of the Z80

After 48 years, Zilog is killing the classic standalone Z80 microprocessor chip Sorry if I'm late to this party. :P Based on what I could find, Zilog themselves will no longer produce classical DIP Z80s, though a modern variant, the eZ80, will still be produced, albeit in a different package. Aside...
by DragWx
Sat Apr 20, 2024 7:16 am
Forum: CX16 Hardware Support
Topic: Writing to NIC at IO3-7 always writes a 9F. Read works fine.
Replies: 8
Views: 471

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

Somehow the KERNAL knows when IO is present (I still haven't wrapped my head around how it does this). For instance, if I don't have the card in a slot and I try to read from say $9f60, I will get a $9f back. If the card is in and I have the jumper set to IO3, I will get the correct value from the ...
by DragWx
Fri Apr 19, 2024 4:16 pm
Forum: CX16 General Chat
Topic: External 1541, no sdcard
Replies: 8
Views: 448

Re: External 1541, no sdcard

It depends, the IEC port has a RST line so when the host is reset, all of the devices are reset too. I'd imagine the X16 passes its reset signal through to the IEC port as well (I know the C128 does), but I haven't checked so I don't know for sure.
by DragWx
Fri Apr 19, 2024 4:36 am
Forum: CX16 General Chat
Topic: External 1541, no sdcard
Replies: 8
Views: 448

Re: External 1541, no sdcard

Is it possible that the X16 is booting faster than the 1541 can initialize? The starting handshake for communications is usually something like this: Host (C64 or X16) pulls CLK low. Devices pull DATA low. Host takes as long as it needs, then releases CLK when ready. Devices take as long as they nee...
by DragWx
Fri Apr 19, 2024 3:04 am
Forum: X16 Feature Requests
Topic: Suggestion: Do/Loop/While/Until/exit
Replies: 7
Views: 404

Re: Suggestion: Do/Loop/While/Until/exit

This sounds like BASIC++, like what C++ is to C. :D

In other words, totally doable, but maybe better suited to one of the IDEs that's baked into the ROM.
by DragWx
Sun Apr 14, 2024 6:33 pm
Forum: CX16 General Chat
Topic: External 1541, no sdcard
Replies: 8
Views: 448

Re: External 1541, no sdcard

I can confirm via the Kernal ROM's source code that device 8 is the SD card if and only if an SD card is inserted, and goes to the IEC port if not. It's probably already clear, but the Kernal is trying to load "AUTOBOOT.X16" from device 8 when the computer boots, and it clearly seems to be...