Search found 1009 matches

by ahenry3068
Mon Apr 22, 2024 6:17 pm
Forum: General Retro Chat
Topic: UK BASIC Magazine
Replies: 2
Views: 178

Re: UK BASIC Magazine

mortarm wrote: Mon Apr 22, 2024 5:26 pm Greetings:

I'm looking for a UK magazine that was published in the '80s that focused on BASIC programming. I forget the name, but there's a site that most of the issues online.

Any ideas?
Was it INPUT magazine ?

https://archive.org/details/inputmagazine
by ahenry3068
Mon Apr 22, 2024 7:13 am
Forum: Creative Arts
Topic: Sapphire Eyes(YM2151+VERA)
Replies: 6
Views: 374

Re: Sapphire Eyes(YM2151+VERA)

told you I should use PSG more😁 https://youtu.be/hYH_z6JYiMw note to exporting ZSM. Due to inaccuracy of the Furnace emulation of the VERA PCM volume, you should play with the PCM volume to lower it a bit to match the video. Covered and mastered on Furnace v0.6.0, Very cool. To bad it's a .85 mb ZS...
by ahenry3068
Mon Apr 22, 2024 12:00 am
Forum: Creative Arts
Topic: Sapphire Eyes(YM2151+VERA)
Replies: 6
Views: 374

Re: Sapphire Eyes(YM2151+VERA)

told you I should use PSG more😁 https://youtu.be/hYH_z6JYiMw note to exporting ZSM. Due to inaccuracy of the Furnace emulation of the VERA PCM volume, you should play with the PCM volume to lower it a bit to match the video. Covered and mastered on Furnace v0.6.0, Very cool. To bad it's a .85 mb ZS...
by ahenry3068
Sun Apr 21, 2024 10:47 am
Forum: Development Tools
Topic: TilemapEd, Tilemap editor for the X16
Replies: 204
Views: 3125031

Re: TilemapEd, Tilemap editor for the X16

VERA handles zero as transparent, ok. When porting from the C64, zero was black. So to get the effect again, we set the VERA background to black, and voilá, everything is fine. As long as you get the other layer and sprites sorted. In Tilemaped, everything that was black is now grey, as that is the...
by ahenry3068
Sun Apr 21, 2024 12:27 am
Forum: X16 Feature Requests
Topic: Suggestion: Do/Loop/While/Until/exit
Replies: 7
Views: 414

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

Maybe add them to BASLOAD and let it implement them with existing BASIC 2.0 commands. Other "syntactic sugar" like SELECT CASE and multi line IF...THEN could also be implemented. Maybe even SUB and FUNCTION? Yes, FUNCTION is a stretch... FUNCTION Might be easier than SELECT CASE. If it wa...
by ahenry3068
Sun Apr 21, 2024 12:22 am
Forum: X16 Feature Requests
Topic: networking options
Replies: 38
Views: 21113

Re: networking options

Just my two cents here. For me, what would be period correct and hugely enjoyable is a simple wifi modem that allows for a simple terminal program to connect to internet-based bbses. One of my primary uses for my C64 was to connect to bbses for conversation, games and downloads. To me, having some ...
by ahenry3068
Sat Apr 20, 2024 4:41 am
Forum: Graphics Apps
Topic: IMAGE to BMX file convertor.
Replies: 3
Views: 6761

UPDATE: IMAGE to BMX file convertor.

Updated this to preserve VERA Text Colors in the BMX file. BMX files will now be 240 colors and the VERA default text colors will be included in the BMX Palette for Indices 0-15.
by ahenry3068
Fri Apr 19, 2024 7:13 am
Forum: X16 Feature Requests
Topic: Suggestion: Do/Loop/While/Until/exit
Replies: 7
Views: 414

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

Maybe add them to BASLOAD and let it implement them with existing BASIC 2.0 commands. Other "syntactic sugar" like SELECT CASE and multi line IF...THEN could also be implemented. Maybe even SUB and FUNCTION? Yes, FUNCTION is a stretch... FUNCTION Might be easier than SELECT CASE. If it wa...
by ahenry3068
Fri Apr 19, 2024 12:37 am
Forum: Audio Apps
Topic: streaming .wav music player
Replies: 3
Views: 4801

Re: streaming .wav music player

No sound? or does it say "invalid format?" Because it doesn't support all formats. Maybe I should improve the error message. Ah, I think those wavs are 44.1 khz stereo, which is too much for the poor x16 to handle. Try converting it to mono or <=16khz first, and play that instead? Anyway ...
by ahenry3068
Thu Apr 18, 2024 12:34 am
Forum: Libraries and Examples
Topic: CHAIN ASSET LOAD
Replies: 0
Views: 202

CHAIN ASSET LOAD

Demonstrates Using the LOAD command in a BASIC program and the communications buffer at 0:BF00 to pass a string between Loaded Programs. Allows loading assets to VRAM, BRAM golden Ram on startup without having those routines take memory from your program. Each time LOAD Is invoked the LOAD.ed module...