| |
cbmeeks
Registered: Oct 2005 Posts: 78 |
KickAssembler KicksAss!!
All I can say is thanks!
.pc = $0c00
T1: .fill 64,i
T2: .fill 64,i+64
T3: .fill 64,i+128
T4: .fill 64,i+192
Give me the table I want. SO easy.
METROID
http://www.metroidclassic.com |
|
| |
Scout
Registered: Dec 2002 Posts: 1570 |
Quote: All I can say is thanks!
.pc = $0c00
T1: .fill 64,i
T2: .fill 64,i+64
T3: .fill 64,i+128
T4: .fill 64,i+192
Give me the table I want. SO easy.
METROID
http://www.metroidclassic.com
Simular stuff can also be done in other assemblers.
So no, you didn't convince me. |
| |
dalezy
Registered: Apr 2002 Posts: 476 |
that metroidclassics-link in your sig scared me for a minute. i actually thought there was metroid out on c64 and i did the tune-conversions i started on some years ago for nothing. =) |
| |
cbmeeks
Registered: Oct 2005 Posts: 78 |
@Scout
Yeah, maybe not for you but I'm a simpleton so things like that impress me. :-)
@dalezy
I remember someone doing a metroid sid but I have been unable to find it. Over on Lemon I posted recently where I have lost everything to Metroid Classic C64 due to a human error (mine).
Alas, your effort wasn't for nothing. Especially if you still have it. :-D
EDIT:
I mean, even though this is possible with other assemblers, I just want to give credit where credit is due:
:DrawTileXY(0,0,1)
:DrawTileXY(2,0,3)
...
.macro DrawTileXY( x, y, tile ) {
ldx #tile
lda T1,x
sta [SCRBUFFER1 + [[y * 40] + x]]
lda T2,x
sta [SCRBUFFER1 + [[y * 40] + x + 1]]
lda T3,x
sta [SCRBUFFER1 + [[[y + 1] * 40] + x]]
lda T4,x
sta [SCRBUFFER1 + [[[y + 1] * 40] + x + 1]]
}
METROID
http://www.metroidclassic.com |
| |
dalezy
Registered: Apr 2002 Posts: 476 |
i have done 3 or 4 sub-tunes (all without the noise chan tho, need to check at home which of them they actually are) - so if they are of any use, i could send them in your general direction =) |
| |
cbmeeks
Registered: Oct 2005 Posts: 78 |
Quote: i have done 3 or 4 sub-tunes (all without the noise chan tho, need to check at home which of them they actually are) - so if they are of any use, i could send them in your general direction =)
That would freaking rock!
Thanks a ton.
METROID
http://www.metroidclassic.com |
| |
dalezy
Registered: Apr 2002 Posts: 476 |
i sent them to the gmail-address i found at your page. =) |
| |
cbmeeks
Registered: Oct 2005 Posts: 78 |
Man, you rock. Those sound fucking GREAT!!!!!!
METROID
http://www.metroidclassic.com |