enable newline normalization
get revision number via `hg svn info` for svnrev.h
ignore incremental/generated binary files (windows/VS at least)
leave a comment if some files need native eol set in svnprops

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5637 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman
2010-06-09 01:37:08 +00:00
parent dacd557f57
commit 4a0c8fc0c9
200 changed files with 94029 additions and 95353 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,23 +1,23 @@
incdir "tests"
include "dsp_base.inc"
; Test for andc'ls
;
; 3d80 andc'ls $AC1.M : $AX0.L, $AC0.M
clr $ACC0
clr $ACC1
lri $AX0.L, #0x0000
lri $AR0, #0x0FF0
lri $AR3, #0x0FF0
lri $AC0.M, #0x0004
lri $AC1.M, #0x1234
andc'ls $AC1.M : $AX0.L, $AC0.M
call send_back
; We're done, DO NOT DELETE THIS LINE
jmp end_of_test
incdir "tests"
include "dsp_base.inc"
; Test for andc'ls
;
; 3d80 andc'ls $AC1.M : $AX0.L, $AC0.M
clr $ACC0
clr $ACC1
lri $AX0.L, #0x0000
lri $AR0, #0x0FF0
lri $AR3, #0x0FF0
lri $AC0.M, #0x0004
lri $AC1.M, #0x1234
andc'ls $AC1.M : $AX0.L, $AC0.M
call send_back
; We're done, DO NOT DELETE THIS LINE
jmp end_of_test

View File

@ -1,41 +1,41 @@
; This test tries to figure out a couple of unknown opcodes.
incdir "tests"
include "dsp_base.inc"
// 0x02ca is an unknown opcode found in Zelda ucodes.
// 0x02ca logically shifts (not rotates) the whole ACC0 right by signed 16-bit value AC1.M
// (So, if AC1.M is negative, it shifts left).
// We'll call it lsrn, no arguments.
// 0x02cb is the same opcode, but arithmetic.
// We'll call it asrn, no arguments.
clr $ACC0
clr $ACC1
lri $AC0.H, #0
lri $AC0.M, #256
//neg $ACC0
lri $AC0.L, #1
lri $AC1.H, #0xFF
lri $AC1.M, #1
lri $AC1.L, #0xFF
call send_back
cw 0x02ca
call send_back
cw 0x02ca
call send_back
cw 0x02ca
call send_back
cw 0x02ca
call send_back
jmp end_of_test
; This test tries to figure out a couple of unknown opcodes.
incdir "tests"
include "dsp_base.inc"
// 0x02ca is an unknown opcode found in Zelda ucodes.
// 0x02ca logically shifts (not rotates) the whole ACC0 right by signed 16-bit value AC1.M
// (So, if AC1.M is negative, it shifts left).
// We'll call it lsrn, no arguments.
// 0x02cb is the same opcode, but arithmetic.
// We'll call it asrn, no arguments.
clr $ACC0
clr $ACC1
lri $AC0.H, #0
lri $AC0.M, #256
//neg $ACC0
lri $AC0.L, #1
lri $AC1.H, #0xFF
lri $AC1.M, #1
lri $AC1.L, #0xFF
call send_back
cw 0x02ca
call send_back
cw 0x02ca
call send_back
cw 0x02ca
call send_back
cw 0x02ca
call send_back
jmp end_of_test