Re: A92: converting old fargo programs


[Prev][Next][Index][Thread]

Re: A92: converting old fargo programs




Daniel Fabian wrote:
> 
> HI
> I'm just converting the old diamonds-source to fargo II, because I want
> to link some noew levels. The whole things ran pretty nice, until you
> start the game, then I always get an error. It didn't take me long to
> find the reason for that error:
>   move.w $2700,sr
> According to the file convert.txt it isn't alowed any more to address
> the status register. Unfortunatly, since I'm a very beginner in
> assembler, I neither understood the alternertives, nor could I find one
> by myself.
> So I thought, I'd simply ask all the genusis in this mailing list. Hope
> someone knows something.
> Thanks, Gek

It should work, if you just replace all occurences of move #$xxxx,SR
by
		move.w	#$xxxx, d0
		trap	#1


Follow-Ups: References: