Search found 2441 matches

by TmEE co.(TM)
Thu Feb 22, 2007 6:59 pm
Forum: Sound
Topic: how can i do music on megadrive?
Replies: 288
Views: 552809

Stef wrote:Using signed 8 bits sample permit to keep the quality of 8 bits sample and have only an extra "add $80" instruction.
Which is faster, shift or add ?
by TmEE co.(TM)
Thu Feb 22, 2007 8:51 am
Forum: Sound
Topic: how can i do music on megadrive?
Replies: 288
Views: 552809

You did "ADD reg, #80" on sample data in your code, why is it required ?
I just add two samples together if I use 7-bit unsigned, or do some shifts if I use 8-bit unsigned and then add them together.
by TmEE co.(TM)
Thu Feb 22, 2007 6:37 am
Forum: Sound
Topic: how can i do music on megadrive?
Replies: 288
Views: 552809

I don't like any signed stuff and how can you mix signed stuff easier ?
by TmEE co.(TM)
Tue Feb 20, 2007 2:02 pm
Forum: Sound
Topic: how can i do music on megadrive?
Replies: 288
Views: 552809

I don't have the code here so i can't really remember perfectly, but that should give you some tips... what part you don't understand ? Actually most of it. I just figured out a way to improve my code, now I can free one reg (actually 2). Anyway my driver uses 8-bit unsigned samples, with 4 byte he...
by TmEE co.(TM)
Tue Feb 20, 2007 10:30 am
Forum: Sound
Topic: how can i do music on megadrive?
Replies: 288
Views: 552809

RedAngel wrote:Some links:
ADPCM routine
PSG samples
Cool stuff :D
by TmEE co.(TM)
Tue Feb 20, 2007 6:24 am
Forum: Sound
Topic: how can i do music on megadrive?
Replies: 288
Views: 552809

I looked at your 2ch mixer code, and I looked at it again, and I must say, that I didn't get it :cry:
by TmEE co.(TM)
Mon Feb 19, 2007 5:00 pm
Forum: Sound
Topic: how can i do music on megadrive?
Replies: 288
Views: 552809

I should have written my Z80 driver friendly, it is basically RAW data, but it has some "header" data in it so it's easy to get all required info on the sample.
by TmEE co.(TM)
Mon Feb 19, 2007 4:56 pm
Forum: Announcement
Topic: Forum is now open to public
Replies: 49
Views: 88025

ElBarto wrote:Hello, me again :D
Is it possible to have a blabla section for non-megadrive related topics ?
Good Idea, all the forms I've visited have one :wink:
by TmEE co.(TM)
Sun Feb 18, 2007 4:29 pm
Forum: Sound
Topic: how can i do music on megadrive?
Replies: 288
Views: 552809

Ok, I'll see tomorrow

I started to write my own 2ch mixer, this time I won't use WAVs but more game friendly format :)
by TmEE co.(TM)
Sat Feb 17, 2007 7:05 pm
Forum: Sound
Topic: how can i do music on megadrive?
Replies: 288
Views: 552809

there's WAVs in the dev kit ?
by TmEE co.(TM)
Sat Feb 17, 2007 12:10 pm
Forum: Sound
Topic: how can i do music on megadrive?
Replies: 288
Views: 552809

I'll check it out ... on monday, I have dial up at home and downloading 1MB is pain but to talk about 13MB !
by TmEE co.(TM)
Fri Feb 16, 2007 5:04 pm
Forum: Sound
Topic: how can i do music on megadrive?
Replies: 288
Views: 552809

I think I'm going to use some things, you know more advanced stuff than I. I looked at your code, and I think, I could not make it faster.
Is usage of X and Y slower than HL ?
by TmEE co.(TM)
Fri Feb 16, 2007 10:36 am
Forum: Sound
Topic: how can i do music on megadrive?
Replies: 288
Views: 552809

OK, now I see, I prefer to use faster stuff
by TmEE co.(TM)
Fri Feb 16, 2007 6:37 am
Forum: Sound
Topic: how can i do music on megadrive?
Replies: 288
Views: 552809

I knew about XH, XL... but I saw LD DE, (ASDFGH) (<-reg maybe incorrect), I thought that you can only use A or HL (and X, Y) for memory stuff
by TmEE co.(TM)
Thu Feb 15, 2007 1:35 pm
Forum: Sound
Topic: how can i do music on megadrive?
Replies: 288
Views: 552809

No No, I meant in 2ch mixing.

Do you know any good doc on z80, I saw some things in your code which I thought cannot be done on z80 that way.