Search
lxdream.org :: lxdream/src/sh4/sh4dasm.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/sh4/sh4dasm.h
changeset 736:a02d1475ccfd
prev586:2a3ba82cf243
next998:1754a8c6a9cf
author nkeynes
date Sat Dec 27 02:59:35 2008 +0000 (15 years ago)
branchlxdream-mem
permissions -rw-r--r--
last change Replace fpscr_mask/fpscr flags in xlat_cache_block with a single xlat_sh4_mode,
which tracks the field of the same name in sh4r - actually a little faster this way.
Now depends on SR.MD, FPSCR.PR and FPSCR.SZ (although it doesn't benefit from the SR
flag yet).

Also fixed the failure to check the flags in the common case (code address returned
by previous block) which took away the performance benefits, but oh well.
view annotate diff log raw
     1 /**
     2  * $Id$
     3  * 
     4  * SH4 CPU definition and disassembly function declarations
     5  *
     6  * Copyright (c) 2005 Nathan Keynes.
     7  *
     8  * This program is free software; you can redistribute it and/or modify
     9  * it under the terms of the GNU General Public License as published by
    10  * the Free Software Foundation; either version 2 of the License, or
    11  * (at your option) any later version.
    12  *
    13  * This program is distributed in the hope that it will be useful,
    14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    16  * GNU General Public License for more details.
    17  */
    19 #ifndef lxdream_sh4dasm_H
    20 #define lxdream_sh4dasm_H 1
    22 #include "cpu.h"
    24 #ifdef __cplusplus
    25 extern "C" {
    26 #endif
    28 #include <stdio.h>
    30 uint32_t sh4_disasm_instruction( uint32_t pc, char *buf, int len, char * );
    31 void sh4_disasm_region( FILE *f, int from, int to );
    33 extern const struct cpu_desc_struct sh4_cpu_desc;
    35 #ifdef __cplusplus
    36 }
    37 #endif
    39 #endif /* !lxdream_sh4dasm_H */
.