filename | src/sh4/sh4trans.h |
changeset | 736:a02d1475ccfd |
prev | 733:633ee022f52e |
next | 740:dd11269ee48b |
author | nkeynes |
date | Mon Jul 14 07:44:42 2008 +0000 (12 years ago) |
permissions | -rw-r--r-- |
last change | Re-indent everything consistently Fix include guards for consistency as well |
file | annotate | diff | log | raw |
1.1 --- a/src/sh4/sh4trans.h Fri Jul 11 04:02:25 2008 +00001.2 +++ b/src/sh4/sh4trans.h Mon Jul 14 07:44:42 2008 +00001.3 @@ -16,10 +16,17 @@1.4 * GNU General Public License for more details.1.5 */1.7 +#ifndef lxdream_sh4trans_H1.8 +#define lxdream_sh4trans_H 11.9 +1.10 #include "sh4/xltcache.h"1.11 #include "dream.h"1.12 #include "mem.h"1.14 +#ifdef __cplusplus1.15 +extern "C" {1.16 +#endif1.17 +1.18 /** Maximum size of a translated instruction, in bytes. Current worst case seems1.19 * to be a BF/S followed by one of the long FMOVs.1.20 */1.21 @@ -145,3 +152,9 @@1.22 * cycle and never returns.1.23 */1.24 void sh4_translate_breakpoint_hit( sh4vma_t pc );1.25 +1.26 +#ifdef __cplusplus1.27 +}1.28 +#endif1.29 +1.30 +#endif /* !lxdream_sh4trans_H */1.31 \ No newline at end of file
.