Jump to content
IGNORED

1st Rastermusic Demo online tonight...


Heaven/TQA

Recommended Posts

I just managed to extract the delta music... :) it simple:

 

load the delta.xex into atari800win

press F8 to enter the debugger

 

enter WRITE 3190 39ff rmtplay.obx to extract the replay routine

enter WRITE 4000 44ff to extract the delta music data

 

initalise music

 

lda #0

ldx #0

ldy #$40

jsr $3400

 

jump into the player at $3403 every VBL.... that's it...

 

as i have written a "delta demo" in 199x for ABBUC user club i will now replace the music with the "original" delta... a so called remix... ;)

 

hve

 

 

 

 

* RMT demo 1

* written jan 2003

* just for fun

* Version 1

* 18/01/03



rmtplay	equ	$3400

rmt  equ $3190  ;$3190 - $39ff raster replayer

delta	equ	$4000  ;$4000 - $44ff delta music data



start	equ	$6000  ;start adress



 org	start



init	lda	#0

 ldy	#$40

 ldx	#$00

 jsr	$3400



loop	inc 710

 lda	710

 sta	^1a

 jsr	wait

 jsr	$3403

 jmp loop



wait	lda	#1

 sta	540

wait0	lda 540

 bne wait0

 rts

 



 org	rmt

 ins "rmtplay.obx"

 org delta

 ins "delta.obx"

 

 run start

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...