97

(33 replies, posted in General Discussion)

this is all the really commercial big beat stuff, why don't you have stuff like Bentley Rhythm Ace in your list?

Couple more screen effects  Having a direct memory map (like old days hardware) is very useful.

Wrote this little drum machine but it doesn't stay in sync for long.

tried out some fx in pico-8 while waiting for it to arrive.

101

(38 replies, posted in General Discussion)

Dolby-Z wrote:

I rarely make any full fledged chip tune tracks, but I've been experimenting with using Nanoloop2 in the primarily analog synthpop group that I'm half of. The FM synth in NL2 has such a lovely grainy warmth to it that contrasts nicely to the more smooth tone of my analog equipment.
TBH though, the limitations of chip instruments drive me up a wall. I've been writing songs on guitar and piano for about eight years, so sitting down and programming a pattern on my gameboy is a mind-numbing chore. If I could just play the damn thing with a keyboard I'd use it more

If you're into analog sounds it's probably worth looking at the sid which is like having a mini modular in your computer. (it's designed by an ex-synth designer)  Have a look at Retroskoi for an example.

IceWolf wrote:

That's neat but why wouldn't we just use milkytracker?

Because all the sounds in this are generated, it has a dedicated instrument editor with frame changeable waveforms and there's loads of extra effects you can do with filters and polyphony.  Have another listen to the demo tracks, it's completely different to Milkytracker.

Surely it'd be easier to software patch the tools you want to use than do it in hardware?   Sid Wizard has that built-in (press f7) , I've done a bit of code to select SIDs for Goat tracker 2.x exports if that's useful. (used in Jellica's musicdisk)   Dunno about synthcart, but anyway patching these drivers a lot of the time is just searching for $D4 in a monitor, noting the addresses and then writing a little bit of code to change them before the program runs.    Fairly trivial, though any new software should really have it built-in at this point.

104

(438 replies, posted in Commodore Computers)

Yes, don't use the RF port.  Get one of those old DIN video cables and use that, but you'll always have a bit of "sid whine" without the hardware fix that's floating about on the net.  (but that is authentic sid whine smile )  The other thing with the c64 is noise from the display, try and avoid having any bright coloured text on the screen or border/screen combinations when recording.  Ideally you'd have border/screen black and the screen switched off (with a POKE 53265,65) but depends how you're recording it. (use POKE 53265,155 to get your screen back smile )

It's been a while since I did anything on the real c64 but as an example of vic noise try:

10 POKE53280,0
20 POKE53281,1
30 PRINT"A";
40 GOTO 30

and have a listen to your output.

FInal POKEY emulation:

Ordered, might make some visualizers and stuff for fun.

Yeah I tend to agree, personally the only place I use ogg is in gamedev and that's really a size/licensing issue.

I'd wait for Gasman to add more stuff to Cowbell, by the looks of things his goal is to put sensible wrappers around all the format players out there.

Is this any use for some of the formats?

110

(33 replies, posted in Other Hardware)

DT 990s at home and DT 770s at work

Thanks.  I've just added an FM patch editor for c64 to the page, should make instrument editing a bit easier.

I've put up the first public version of my FM-Sid driver.   Comes with docs and a couple of (currently windows tools) to convert XM files to the right format , and also Goat Tracker 2 if you want to use an external SID player with it.


FM-Sid is probably the first c64 music driver that lets you use the SFX FM Expander cartridge when composing, giving you 12 channels in total. It allows you to either write songs with the basic stand-alone driver, or use another editor to provide the SID channels while the driver plays back the FM ones. This means using tools with multi-SID support (such as Sid Wizard or Goat Tracker) can give you up to 18 channel songs on one C64. (9 SID channels + 9 FM channels)

As I'm going to be incredibly busy for the next few months I've decided to release the in development version of FM-Sid "as is", until I get time to work on the proper additions for v1.4.

note : If you don't like editing music with external tools and assemblers you won't enjoy using this, it is NOT a standalone tracker and never will be. smile

download