⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 asmaddr.h

📁 SFC游戏模拟器 snes9x 1.43 的原代码
💻 H
字号:
/*******************************************************************************  Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.   (c) Copyright 1996 - 2002 Gary Henderson (gary.henderson@ntlworld.com) and                            Jerremy Koot (jkoot@snes9x.com)  (c) Copyright 2001 - 2004 John Weidman (jweidman@slip.net)  (c) Copyright 2002 - 2004 Brad Jorsch (anomie@users.sourceforge.net),                            funkyass (funkyass@spam.shaw.ca),                            Joel Yliluoma (http://iki.fi/bisqwit/)                            Kris Bleakley (codeviolation@hotmail.com),                            Matthew Kendora,                            Nach (n-a-c-h@users.sourceforge.net),                            Peter Bortas (peter@bortas.org) and                            zones (kasumitokoduck@yahoo.com)  C4 x86 assembler and some C emulation code  (c) Copyright 2000 - 2003 zsKnight (zsknight@zsnes.com),                            _Demo_ (_demo_@zsnes.com), and Nach  C4 C++ code  (c) Copyright 2003 Brad Jorsch  DSP-1 emulator code  (c) Copyright 1998 - 2004 Ivar (ivar@snes9x.com), _Demo_, Gary Henderson,                            John Weidman, neviksti (neviksti@hotmail.com),                            Kris Bleakley, Andreas Naive  DSP-2 emulator code  (c) Copyright 2003 Kris Bleakley, John Weidman, neviksti, Matthew Kendora, and                     Lord Nightmare (lord_nightmare@users.sourceforge.net  OBC1 emulator code  (c) Copyright 2001 - 2004 zsKnight, pagefault (pagefault@zsnes.com) and                            Kris Bleakley  Ported from x86 assembler to C by sanmaiwashi  SPC7110 and RTC C++ emulator code  (c) Copyright 2002 Matthew Kendora with research by                     zsKnight, John Weidman, and Dark Force  S-DD1 C emulator code  (c) Copyright 2003 Brad Jorsch with research by                     Andreas Naive and John Weidman   S-RTC C emulator code  (c) Copyright 2001 John Weidman    ST010 C++ emulator code  (c) Copyright 2003 Feather, Kris Bleakley, John Weidman and Matthew Kendora  Super FX x86 assembler emulator code   (c) Copyright 1998 - 2003 zsKnight, _Demo_, and pagefault   Super FX C emulator code   (c) Copyright 1997 - 1999 Ivar, Gary Henderson and John Weidman  SH assembler code partly based on x86 assembler code  (c) Copyright 2002 - 2004 Marcus Comstedt (marcus@mc.pp.se)    Specific ports contains the works of other authors. See headers in  individual files.   Snes9x homepage: http://www.snes9x.com   Permission to use, copy, modify and distribute Snes9x in both binary and  source form, for non-commercial purposes, is hereby granted without fee,  providing that this license information and copyright notice appear with  all copies and any derived work.   This software is provided 'as-is', without any express or implied  warranty. In no event shall the authors be held liable for any damages  arising from the use of this software.   Snes9x is freeware for PERSONAL USE only. Commercial users should  seek permission of the copyright holders first. Commercial use includes  charging money for Snes9x or software derived from Snes9x.   The copyright holders request that bug fixes and improvements to the code  should be forwarded to them so everyone can benefit from the modifications  in future versions.   Super NES and Super Nintendo Entertainment System are trademarks of  Nintendo Co., Limited and its subsidiary companies.*******************************************************************************/.macro GetCarry	mov FLAGS,r1	shlr r1.endm.macro GetNotCarry	mov #Carry,r1	tst r1,FLAGS.endm.macro SetZNjmp R	jmp	@r13	exts.b	\R,r7.endm.macro Set16ZNjmp R	jmp	@r13	exts.w	\R,r7.endm.macro SetZNlink R	lds	r13,pr	jmp	@r3	exts.b	\R,r7.endm.macro Set16ZNlink R	lds	r13,pr	jmp	@r3	exts.w	\R,r7.endm.macro Xlink	jmp	@r3	lds	r13,pr.endm	#if 0.macro SetZNC	setc _Carry	movb %al, _Negative	movb %al, _Zero.endm.macro Set16ZNC	setc _Carry	setnz _Zero	movb %ah, _Negative.endm.macro SetZNCV	setc _Carry	seto _Overflow	movb %al, _Negative	movb %al, _Zero.endm.macro Set16ZNCV	setc _Carry	seto _Overflow	setnz _Zero	movb %ah, _Negative.endm.macro SetZNV	seto _Overflow	movb %al, _Negative	movb %al, _Zero.endm.macro Set16ZNV	seto _Overflow	setnz _Zero	movb %ah, _Negative.endm#endif/************* IMMEDIATE8 ****************/.Macro Immediate8 K	mov.b @PC+,r0	extu.b r0,r0#ifdef VAR_CYCLES	mov.l MemSpeed,r2	add r2,CYCLES#endif.endm/************* IMMEDIATE16 ****************/.macro Immediate16 K	mov.b @PC+,r0	shll8 r0	mov.b @PC+,r2	extu.b r2,r2	or r2,r0	swap.b r0,r0	extu.w r0,r0#ifdef VAR_CYCLES	mov.l MemSpeedx2,r2	add r2,CYCLES#endif.endm/************* Relative ****************/.macro Relative K#ifdef VAR_CYCLES	mov.l MemSpeed,r2	add r2,CYCLES#endif	mov.b @PC+,r4!	exts.b r4,r4	mov.l PCBase,r2	add PC,r4	sub r2,r4.endm/************* RelativeLong ****************/.macro RelativeLong K#ifdef VAR_CYCLES	mov.l MemSpeedx2,r2	add r2,CYCLES#endif	mov.b @PC+,r4#ifdef VAR_CYCLES	add #6,CYCLES#endif	extu.b r4,r4	mov.b @PC+,r0	shll8 r0	mov.l PCBase,r2	or r0,r4	add PC,r4	sub r2,r4.endm	/************* AbsoluteIndexedIndirect8 ****************/.macro AbsoluteIndexedIndirect8 K#ifdef VAR_CYCLES	mov.l MemSpeedx2,r2	add r2,CYCLES#endif	mov.b @PC+,r2	extu.b r2,r2	mov.b @PC+,r4	shll8 r4	mov.w XX,r0	add r2,r4	add r0,r4	mov.l S9xGetWord,r3	extu.w r4,r4	mov.l ICPU,r1	mov.l ShiftedPB,r2	jsr @r3	or r2,r4	extu.w r0,r4.endm/************* AbsoluteIndirectLong8 ****************/.macro AbsoluteIndirectLong8 K#ifdef VAR_CYCLES	mov.l MemSpeedx2,r2	add r2,CYCLES#endif	mov.b @PC+,r2	extu.b r2,r2	mov.b @PC+,r4	shll8 r4	mov.l S9xGetWord,r3	or r2,r4	jsr @r3	extu.w r4,r4	mov.l r0,@-r15	mov.l S9xGetByte,r3	add #2,r4	jsr @r3	extu.w r4,r4	mov.l @r15+,r4	shll16 r0	or r0,r4.endm.macro AbsoluteIndirect8 K#ifdef VAR_CYCLES	mov.l MemSpeedx2,r2	add r2,CYCLES#endif	mov.b @PC+,r2	extu.b r2,r2	mov.b @PC+,r4	shll8 r4	mov.l S9xGetWord,r3	or r2,r4	jsr @r3	extu.w r4,r4	extu.w r0,r4.endm.macro Absolute8 K#ifdef VAR_CYCLES	mov.l MemSpeedx2,r2	add r2,CYCLES#endif	mov.b @PC+,r2	extu.b r2,r2	mov.b @PC+,r3	shll8 r3	mov.l ICPU,r1	mov.l ShiftedDB,r4	or r2,r3	extu.w r3,r3	add r3,r4.endm.macro AbsoluteLong8 K#ifdef VAR_CYCLES	mov.l MemSpeed,r2	add r2,CYCLES	add r2,CYCLES	add r2,CYCLES#endif	mov.b @PC+,r2	extu.b r2,r2	mov.b @PC+,r4	extu.b r4,r4	mov.b @PC+,r0	extu.b r0,r0	shll16 r0	shll8 r4	or r0,r2	or r2,r4.endm.macro Direct8 K#ifdef VAR_CYCLES	mov.l MemSpeed,r2	add r2,CYCLES#endif#if 0	cmpb $0, DL	je .Direct8\K	addl $6, CYCLES.Direct8\K:#endif	mov.b @PC+,r4	extu.b r4,r4	mov.w DD,r0	add r0,r4	extu.w r4,r4.endm.macro DirectIndirectIndexed8 K#ifdef VAR_CYCLES	mov.l MemSpeed,r2	add r2,CYCLES#endif#if 0	cmpb $0, DD	je .DirectIndirectIndexed8\K	addl $6, CYCLES.DirectIndirectIndexed8\K:#endif	mov.b @PC+,r4	extu.b r4,r4	mov.w DD,r0	add r0,r4	mov.l S9xGetWord,r3	jsr @r3	extu.w r4,r4	mov.l ICPU,r3	mov.l @(20,r3),r4	add r0,r4	mov.w YY,r0	extu.w r0,r0	add r0,r4.endm.macro DirectIndirectIndexedLong8 K#ifdef VAR_CYCLES	mov.l MemSpeed,r2	add r2,CYCLES#endif#if 0	cmpb $0, DD	je .DirectIndirectIndexedLong8\K	addl $6, CYCLES.DirectIndirectIndexedLong8\K:#endif	mov.b @PC+,r4	extu.b r4,r4	mov.w DD,r0	add r0,r4	mov.l S9xGetWord,r3	jsr @r3	extu.w r4,r4	mov.l r0,@-r15	mov.l S9xGetByte,r3	jsr @r3	add #2,r4	mov.l @r15+,r4	shll16 r0	or r0,r4	mov.w YY,r0	extu.w r0,r0	add r0,r4	.endm	.macro DirectIndexedIndirect8 K#ifdef VAR_CYCLES	mov.l MemSpeed,r2	add r2,CYCLES	add #6, CYCLES#endif#if 0	cmpb $0, DD	je .DirectIndexedIndirect8\K	addl $6, CYCLES.DirectIndexedIndirect8\K:#endif	mov.b @PC+,r4	extu.b r4,r4	mov.w DD,r0	add r0,r4	mov.w XX,r0	add r0,r4	mov.l S9xGetWord,r3	jsr @r3	extu.w r4,r4	mov.l ICPU,r3	mov.l @(20,r3),r4	add r0,r4.endm.macro DirectIndexedX8 K#ifdef VAR_CYCLES	mov.l MemSpeed,r2	add r2,CYCLES	add #6, CYCLES#endif#if 0	cmpb $0, DD	je .DirectIndexedX8\K	addl $6, CYCLES.DirectIndexedX8\K:#endif	mov.b @PC+,r4	extu.b r4,r4	mov.w DD,r0	add r0,r4	mov.w XX,r0	add r0,r4	extu.w r4,r4.endm.macro DirectIndexedY8 K#ifdef VAR_CYCLES	mov.l MemSpeed,r2	add r2,CYCLES	add #6, CYCLES#endif#if 0	cmpb $0, DD	je .DirectIndexedY8\K	addl $6, CYCLES.DirectIndexedY8\K:#endif	mov.b @PC+,r4	extu.b r4,r4	mov.w DD,r0	add r0,r4	mov.w YY,r0	add r0,r4	extu.w r4,r4.endm.macro AbsoluteIndexedX8 K#ifdef VAR_CYCLES	mov.l MemSpeedx2,r2	add r2,CYCLES#endif	mov.b @PC+,r2	extu.b r2,r2	mov.b @PC+,r3	shll8 r3	mov.l ICPU,r1	mov.l ShiftedDB,r4	or r2,r3	extu.w r3,r3	mov.w XX,r0	add r3,r4	extu.w r0,r0	add r0,r4.endm.macro AbsoluteIndexedY8 K#ifdef VAR_CYCLES	mov.l MemSpeedx2,r2	add r2,CYCLES#endif	mov.b @PC+,r2	extu.b r2,r2	mov.b @PC+,r3	shll8 r3	mov.l ICPU,r1	mov.l ShiftedDB,r4	or r2,r3	extu.w r3,r3	mov.w YY,r0	add r3,r4	extu.w r0,r0	add r0,r4.endm.macro AbsoluteLongIndexedX8 K#ifdef VAR_CYCLES	mov.l MemSpeed,r2	add r2,CYCLES	add r2,CYCLES	add r2,CYCLES#endif	mov.b @PC+,r2	extu.b r2,r2	mov.b @PC+,r3	extu.b r3,r3	mov.b @PC+,r4	extu.b r4,r4	shll8 r3	or r2,r3	mov.w XX,r0	shll16 r4	extu.w r0,r0	or r3,r4	add r0,r4.endm.macro DirectIndirect8 K#ifdef VAR_CYCLES	mov.l MemSpeed,r2	add r2,CYCLES#endif#if 0	cmpb $0, DL	je .DirectIndirect8\K	addl $6, CYCLES.DirectIndirect8\K:#endif	mov.b @PC+,r4	extu.b r4,r4	mov.w DD,r0	add r0,r4	mov.l S9xGetWord,r3	jsr @r3	extu.w r4,r4	mov.l ICPU,r3	mov.l @(20,r3),r4	add r0,r4.endm.macro DirectIndirectLong8 K#ifdef VAR_CYCLES	mov.l MemSpeed,r2	add r2,CYCLES#endif#if 0	cmpb $0, DL	je .DirectIndirectLong8\K	addl $6, CYCLES.DirectIndirectLong8\K:#endif	mov.b @PC+,r4	extu.b r4,r4	mov.w DD,r0	add r0,r4	mov.l S9xGetWord,r3	jsr @r3	extu.w r4,r4	mov.l r0,@-r15	mov.l S9xGetByte,r3	jsr @r3	add #2,r4	mov.l @r15+,r4	shll16 r0	or r0,r4.endm.macro StackRelative8 K#ifdef VAR_CYCLES	mov.l MemSpeed,r2	add r2,CYCLES	add #6,CYCLES#endif	mov.b @PC+,r4	extu.b r4,r4	mov.w SS,r0	add r0,r4	extu.w r4,r4.endm.macro StackRelativeIndirectIndexed8 K#ifdef VAR_CYCLES	mov.l MemSpeed,r2	add r2,CYCLES	add #12,CYCLES#endif		mov.b @PC+,r4	extu.b r4,r4	mov.w SS,r0	mov.l S9xGetWord,r3	add r0,r4	jsr @r3	extu.w r4,r4	mov.l ICPU,r3	mov.l @(20,r3),r4	add r0,r4	mov.w YY,r0	extu.w r0,r0	add r0,r4.endm/* SoundSkipMethod hardcoded to 0 with #if 0:s below... */.macro BranchCheck0 K	mov.b BranchSkip,r0	tst r0,r0	bt .BranchCheck0S9xExit\K	mov #0,r0	mov.b r0,BranchSkip#if 0	cmpb $0, SoundSkipMethod	jne .BranchCheck0S9xExit\K#endif	mov PC,r0	mov.l PCBase,r1	extu.w r4,r4	sub r1,r0	extu.w r0,r0	cmp/hs r4,r0	bt .BranchCheck0S9xExit\K	jmp @r13	nop.BranchCheck0S9xExit\K:.endm.macro BranchCheck1 K	mov.b BranchSkip,r0	tst r0,r0	bt .BranchCheck1S9xExit\K	mov #0,r0	mov.b r0,BranchSkip#if 0	movb SoundSkipMethod, %al	cmpb $0, %al	jne .BranchCheck1Not0\K#endif	mov PC,r0	mov.l PCBase,r1	extu.w r4,r4	sub r1,r0	extu.w r0,r0	cmp/hs r4,r0	bt .BranchCheck1S9xExit\K	jmp @r13	nop#if 0.BranchCheck1Not0\K:	cmpb $1, %al	jne .BranchCheck1Not1\K	jmp MainAsmLoop.BranchCheck1Not1\K:	cmpb $3, %al	jne .BranchCheck1S9xExit\K	movl PC, %eax	subl PCBase, %eax	cmpw %dx, %ax	jbe .BranchCheck13a\K	jmp MainAsmLoop.BranchCheck13a\K:	movl PCBase, %eax	andl $0xffff, %edx	addl %edx, %eax	movl %eax, PC#endif.BranchCheck1S9xExit\K:.endm.macro BranchCheck2 K	mov.b BranchSkip,r0	tst r0,r0	bt .BranchCheck2S9xExit\K	mov #0,r0	mov.b r0,BranchSkip#if 0	movb SoundSkipMethod, %al	cmpb $0, %al	jne .BranchCheck2Not0\K#endif	mov PC,r0	mov.l PCBase,r1	extu.w r4,r4	sub r1,r0	extu.w r0,r0	cmp/hs r4,r0	bt .BranchCheck2S9xExit\K	jmp @r13	nop#if 0.BranchCheck2Not0\K:	cmpb $1, %al	jne .BranchCheck2Not1\K	movl PCBase, %eax	andl $0xffff, %edx	addl %edx, %eax	movl %eax, PC	jmp MainAsmLoop.BranchCheck2Not1\K:	cmpb $3, %al	jne .BranchCheck2S9xExit\K	movl PC, %eax	subl PCBase, %eax	cmpw %dx, %ax	jbe .BranchCheck23a\K	jmp MainAsmLoop.BranchCheck23a\K:	movl PCBase, %eax	andl $0xffff, %edx	addl %edx, %eax	movl %eax, PC#endif.BranchCheck2S9xExit\K:.endm#if 0.macro PushByte K#ifdef VAR_CYCLES	addl $8, CYCLES#endif		xorl %edx, %edx	movl RAM, %ecx	movw SS, %dx	movb %al, (%ecx, %edx)	decw SS.endm.macro PushWord K#ifdef VAR_CYCLES	addl $16, CYCLES#endif		xorl %edx, %edx	movl RAM, %ecx	movw SS, %dx	decl %ecx	movw %ax, (%ecx, %edx)	subw $2, %dx	movw %dx, SS.endm.macro PullByte K#ifdef VAR_CYCLES	addl $8, CYCLES#endif		xorl %edx, %edx	movl RAM, %eax	movw SS, %dx	incl %edx	movw %dx, SS	movb (%eax, %edx), %al.endm.macro PullWord K#ifdef VAR_CYCLES	addl $16, CYCLES#endif		xorl %edx, %edx	movl RAM, %eax	movw SS, %edx	addw $2, %dx	movw %dx, SS	movw -1(%eax, %edx), %ax.endm#else.macro PushBytejmp K	mov r0,r1	mov.w SS,r0	extu.w r0,r4	mov.l S9xSetByte,r3	add #-1,r0	mov.w r0,SS	mov r1,r0	Xlink.endm.macro PushWordjmp K	mov r0,r1	mov.w SS,r0	add #-1,r0	extu.w r0,r4	mov.l S9xSetWord,r3	add #-1,r0	mov.w r0,SS	mov r1,r0	Xlink.endm.macro PushByte K	mov r0,r1	mov.w SS,r0	extu.w r0,r4	mov.l S9xSetByte,r3	add #-1,r0	mov.w r0,SS	jsr @r3	mov r1,r0.endm.macro PushWord K	mov r0,r1	mov.w SS,r0	add #-1,r0	extu.w r0,r4	mov.l S9xSetWord,r3	add #-1,r0	mov.w r0,SS	jsr @r3	mov r1,r0.endm.macro PullByte K	mov.w SS,r0	add #1,r0	mov.l S9xGetByte,r3	extu.w r0,r4	jsr @r3	mov.w r0,SS.endm.macro PullWord K	mov.w SS,r0	add #1,r0	mov.l S9xGetWord,r3	extu.w r0,r4	add #1,r0	jsr @r3	mov.w r0,SS.endm#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -