Search found 2 matches

by sasq
Thu Feb 11, 2010 4:04 pm
Forum: Demos
Topic: TFM Player
Replies: 1
Views: 5503

TFM Player

A ROM for playing TFM music. No compilation required, just append the music to the player binary and start (check included readme).

Prints out Title, Author & Info from module.

http://swimmer.se/tfmplayer.zip

Image

-- Sasq
by sasq
Tue Feb 09, 2010 11:51 am
Forum: Megadrive/Genesis
Topic: DMA Copy source
Replies: 0
Views: 9027

DMA Copy source

Just thought I'd begin by sharing some code; ; Megadrive DMA Copy by Sasq ; d0 = Address, d1 = Size (in words), d2 = VRAM offset dma_copy: move.l #$C00004,a0 move.w #$8f02,(a0) ; Set Source address High, Mid & Low lsl.l #7,d0 move.b #$97,d0 rol.l #8,d0 move.w d0,(a0) move.b #$96,d0 rol.l #8,d0 move....