Mercurial > repos > blastem
view fib.s68 @ 1305:5ceb316c479a
Allow games to be specified in ROM DB via sha1 instead of product ID. Added a new ROM DB memory map device type fixed for emulating simple fixed value copy protection registers. Used those two features to support Ya Se Chuan Shuo via a ROM DB entry.
author | Michael Pavone <pavone@retrodev.com> |
---|---|
date | Wed, 29 Mar 2017 00:29:44 -0700 |
parents | f664eeb55cb4 |
children | 2455662378ed f7fe240a7da6 |
line wrap: on
line source
dc.l $0, start start: moveq #36, d0 bsr fib illegal fib: cmp.l #2, d0 blt base subq.l #1, d0 move.l d0, -(a7) bsr fib move.l (a7), d1 exg d0, d1 move.l d1, (a7) subq.l #1, d0 bsr fib move.l (a7)+, d1 add.l d1, d0 rts base: moveq #1, d0 rts