mirror of
https://github.com/RaySollium99/libpicofe.git
synced 2025-09-05 06:47:45 -04:00
32x: drc: handlers wip
git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@826 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
ebc9df9f7e
commit
c908877fcd
4 changed files with 6 additions and 6 deletions
|
@ -13,7 +13,7 @@ amalgamate = 0
|
||||||
#profile = 1
|
#profile = 1
|
||||||
#use_musashi = 1
|
#use_musashi = 1
|
||||||
use_sh2drc = 1
|
use_sh2drc = 1
|
||||||
drc_debug = 1
|
#drc_debug = 3
|
||||||
|
|
||||||
-include Makefile.local
|
-include Makefile.local
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ use_musashi = 1
|
||||||
#use_fame = 1
|
#use_fame = 1
|
||||||
#use_mz80 = 1
|
#use_mz80 = 1
|
||||||
use_sh2drc = 1
|
use_sh2drc = 1
|
||||||
drc_debug = 1
|
#drc_debug = 3
|
||||||
#profile = 1
|
#profile = 1
|
||||||
#fake_in_gp2x = 1
|
#fake_in_gp2x = 1
|
||||||
|
|
||||||
|
@ -140,6 +140,7 @@ mkdirs:
|
||||||
include ../common/revision.mak
|
include ../common/revision.mak
|
||||||
|
|
||||||
pico/carthw/svp/compiler.o : ../../cpu/drc/emit_arm.c
|
pico/carthw/svp/compiler.o : ../../cpu/drc/emit_arm.c
|
||||||
|
cpu/sh2/compiler.o : ../../cpu/drc/emit_x86.c
|
||||||
pico/pico.o pico/cd/pico.o : ../../pico/pico_cmn.c ../../pico/pico_int.h
|
pico/pico.o pico/cd/pico.o : ../../pico/pico_cmn.c ../../pico/pico_int.h
|
||||||
pico/memory.o pico/cd/memory.o : ../../pico/pico_int.h ../../pico/memory.h
|
pico/memory.o pico/cd/memory.o : ../../pico/pico_int.h ../../pico/memory.h
|
||||||
|
|
||||||
|
|
|
@ -170,7 +170,7 @@ void host_dasm(void *addr, int len)
|
||||||
|
|
||||||
vma_end = vma + len;
|
vma_end = vma + len;
|
||||||
while (vma < vma_end) {
|
while (vma < vma_end) {
|
||||||
printf(" %p ", (void *)(long)vma);
|
printf(" %p ", (void *)(long)vma);
|
||||||
vma += print_insn_func(vma, &di);
|
vma += print_insn_func(vma, &di);
|
||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,9 +26,8 @@
|
||||||
#define SIMPLE_WRITE_SOUND 0
|
#define SIMPLE_WRITE_SOUND 0
|
||||||
#define mix_32_to_16l_stereo_lvl mix_32_to_16l_stereo
|
#define mix_32_to_16l_stereo_lvl mix_32_to_16l_stereo
|
||||||
|
|
||||||
#define EL_LOGMASK (EL_ANOMALY|EL_STATUS|EL_UIO|EL_IDLE|EL_32X)
|
#define EL_LOGMASK (EL_STATUS|EL_ANOMALY|EL_UIO|EL_IDLE)
|
||||||
// EL_VDPDMA|EL_ASVDP|EL_SR) // |EL_BUSREQ|EL_Z80BNK)
|
// EL_VDPDMA|EL_ASVDP|EL_SR | EL_BUSREQ|EL_Z80BNK | EL_32X)
|
||||||
//#define EL_LOGMASK (EL_ANOMALY|EL_STATUS)
|
|
||||||
|
|
||||||
//#define dprintf(f,...) printf("%05i:%03i: " f "\n",Pico.m.frame_count,Pico.m.scanline,##__VA_ARGS__)
|
//#define dprintf(f,...) printf("%05i:%03i: " f "\n",Pico.m.frame_count,Pico.m.scanline,##__VA_ARGS__)
|
||||||
#define dprintf(x...)
|
#define dprintf(x...)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue