]>
Commit | Line | Data |
---|---|---|
e6e5906b PB |
1 | /* |
2 | * m68k virtual CPU header | |
5fafdf24 | 3 | * |
0633879f | 4 | * Copyright (c) 2005-2007 CodeSourcery |
e6e5906b PB |
5 | * Written by Paul Brook |
6 | * | |
7 | * This library is free software; you can redistribute it and/or | |
8 | * modify it under the terms of the GNU Lesser General Public | |
9 | * License as published by the Free Software Foundation; either | |
10 | * version 2 of the License, or (at your option) any later version. | |
11 | * | |
12 | * This library is distributed in the hope that it will be useful, | |
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 | * General Public License for more details. | |
16 | * | |
17 | * You should have received a copy of the GNU Lesser General Public | |
8167ee88 | 18 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. |
e6e5906b | 19 | */ |
07f5a258 MA |
20 | |
21 | #ifndef M68K_CPU_H | |
22 | #define M68K_CPU_H | |
e6e5906b PB |
23 | |
24 | #define TARGET_LONG_BITS 32 | |
25 | ||
9349b4f9 | 26 | #define CPUArchState struct CPUM68KState |
c2764719 | 27 | |
9a78eead | 28 | #include "qemu-common.h" |
022c62cb | 29 | #include "exec/cpu-defs.h" |
a836b8fa | 30 | #include "cpu-qom.h" |
6b4c305c | 31 | #include "fpu/softfloat.h" |
e6e5906b | 32 | |
7ef25cdd LV |
33 | #define OS_BYTE 0 |
34 | #define OS_WORD 1 | |
35 | #define OS_LONG 2 | |
36 | #define OS_SINGLE 3 | |
37 | #define OS_DOUBLE 4 | |
38 | #define OS_EXTENDED 5 | |
39 | #define OS_PACKED 6 | |
f2224f2c | 40 | #define OS_UNSIZED 7 |
7ef25cdd | 41 | |
e6e5906b PB |
42 | #define MAX_QREGS 32 |
43 | ||
e6e5906b PB |
44 | #define EXCP_ACCESS 2 /* Access (MMU) error. */ |
45 | #define EXCP_ADDRESS 3 /* Address error. */ | |
46 | #define EXCP_ILLEGAL 4 /* Illegal instruction. */ | |
47 | #define EXCP_DIV0 5 /* Divide by zero */ | |
5beb144e LV |
48 | #define EXCP_CHK 6 /* CHK, CHK2 Instructions */ |
49 | #define EXCP_TRAPCC 7 /* FTRAPcc, TRAPcc, TRAPV Instructions */ | |
e6e5906b PB |
50 | #define EXCP_PRIVILEGE 8 /* Privilege violation. */ |
51 | #define EXCP_TRACE 9 | |
52 | #define EXCP_LINEA 10 /* Unimplemented line-A (MAC) opcode. */ | |
53 | #define EXCP_LINEF 11 /* Unimplemented line-F (FPU) opcode. */ | |
54 | #define EXCP_DEBUGNBP 12 /* Non-breakpoint debug interrupt. */ | |
55 | #define EXCP_DEBEGBP 13 /* Breakpoint debug interrupt. */ | |
56 | #define EXCP_FORMAT 14 /* RTE format error. */ | |
57 | #define EXCP_UNINITIALIZED 15 | |
5beb144e LV |
58 | #define EXCP_SPURIOUS 24 /* Spurious interrupt */ |
59 | #define EXCP_INT_LEVEL_1 25 /* Level 1 Interrupt autovector */ | |
60 | #define EXCP_INT_LEVEL_7 31 /* Level 7 Interrupt autovector */ | |
e6e5906b PB |
61 | #define EXCP_TRAP0 32 /* User trap #0. */ |
62 | #define EXCP_TRAP15 47 /* User trap #15. */ | |
f83311e4 LV |
63 | #define EXCP_FP_BSUN 48 /* Branch Set on Unordered */ |
64 | #define EXCP_FP_INEX 49 /* Inexact result */ | |
65 | #define EXCP_FP_DZ 50 /* Divide by Zero */ | |
66 | #define EXCP_FP_UNFL 51 /* Underflow */ | |
67 | #define EXCP_FP_OPERR 52 /* Operand Error */ | |
68 | #define EXCP_FP_OVFL 53 /* Overflow */ | |
69 | #define EXCP_FP_SNAN 54 /* Signaling Not-A-Number */ | |
70 | #define EXCP_FP_UNIMP 55 /* Unimplemented Data type */ | |
5beb144e LV |
71 | #define EXCP_MMU_CONF 56 /* MMU Configuration Error */ |
72 | #define EXCP_MMU_ILLEGAL 57 /* MMU Illegal Operation Error */ | |
73 | #define EXCP_MMU_ACCESS 58 /* MMU Access Level Violation Error */ | |
e6e5906b | 74 | #define EXCP_UNSUPPORTED 61 |
e6e5906b | 75 | |
0633879f | 76 | #define EXCP_RTE 0x100 |
a87295e8 | 77 | #define EXCP_HALT_INSN 0x101 |
0633879f | 78 | |
6ebbf390 | 79 | #define NB_MMU_MODES 2 |
20a8856e | 80 | #define TARGET_INSN_START_EXTRA_WORDS 1 |
6ebbf390 | 81 | |
f83311e4 LV |
82 | typedef CPU_LDoubleU FPReg; |
83 | ||
e6e5906b PB |
84 | typedef struct CPUM68KState { |
85 | uint32_t dregs[8]; | |
86 | uint32_t aregs[8]; | |
87 | uint32_t pc; | |
88 | uint32_t sr; | |
89 | ||
20dcee94 PB |
90 | /* SSP and USP. The current_sp is stored in aregs[7], the other here. */ |
91 | int current_sp; | |
6e22b28e | 92 | uint32_t sp[3]; |
20dcee94 | 93 | |
e6e5906b PB |
94 | /* Condition flags. */ |
95 | uint32_t cc_op; | |
620c6cf6 RH |
96 | uint32_t cc_x; /* always 0/1 */ |
97 | uint32_t cc_n; /* in bit 31 (i.e. negative) */ | |
98 | uint32_t cc_v; /* in bit 31, unused, or computed from cc_n and cc_v */ | |
99 | uint32_t cc_c; /* either 0/1, unused, or computed from cc_n and cc_v */ | |
100 | uint32_t cc_z; /* == 0 or unused */ | |
e6e5906b | 101 | |
f83311e4 LV |
102 | FPReg fregs[8]; |
103 | FPReg fp_result; | |
e6e5906b PB |
104 | uint32_t fpcr; |
105 | uint32_t fpsr; | |
106 | float_status fp_status; | |
107 | ||
acf930aa PB |
108 | uint64_t mactmp; |
109 | /* EMAC Hardware deals with 48-bit values composed of one 32-bit and | |
110 | two 8-bit parts. We store a single 64-bit value and | |
111 | rearrange/extend this when changing modes. */ | |
112 | uint64_t macc[4]; | |
113 | uint32_t macsr; | |
114 | uint32_t mac_mask; | |
115 | ||
e6e5906b PB |
116 | /* MMU status. */ |
117 | struct { | |
118 | uint32_t ar; | |
119 | } mmu; | |
0633879f PB |
120 | |
121 | /* Control registers. */ | |
122 | uint32_t vbr; | |
123 | uint32_t mbar; | |
124 | uint32_t rambar0; | |
20dcee94 | 125 | uint32_t cacr; |
0633879f | 126 | |
0633879f PB |
127 | int pending_vector; |
128 | int pending_level; | |
e6e5906b PB |
129 | |
130 | uint32_t qregs[MAX_QREGS]; | |
131 | ||
1f5c00cf AB |
132 | /* Fields up to this point are cleared by a CPU reset */ |
133 | struct {} end_reset_fields; | |
134 | ||
e6e5906b | 135 | CPU_COMMON |
aaed909a | 136 | |
f0c3c505 | 137 | /* Fields from here on are preserved across CPU reset. */ |
aaed909a | 138 | uint32_t features; |
e6e5906b PB |
139 | } CPUM68KState; |
140 | ||
a836b8fa PB |
141 | /** |
142 | * M68kCPU: | |
143 | * @env: #CPUM68KState | |
144 | * | |
145 | * A Motorola 68k CPU. | |
146 | */ | |
147 | struct M68kCPU { | |
148 | /*< private >*/ | |
149 | CPUState parent_obj; | |
150 | /*< public >*/ | |
151 | ||
152 | CPUM68KState env; | |
153 | }; | |
154 | ||
155 | static inline M68kCPU *m68k_env_get_cpu(CPUM68KState *env) | |
156 | { | |
157 | return container_of(env, M68kCPU, env); | |
158 | } | |
159 | ||
160 | #define ENV_GET_CPU(e) CPU(m68k_env_get_cpu(e)) | |
161 | ||
162 | #define ENV_OFFSET offsetof(M68kCPU, env) | |
163 | ||
164 | void m68k_cpu_do_interrupt(CPUState *cpu); | |
165 | bool m68k_cpu_exec_interrupt(CPUState *cpu, int int_req); | |
166 | void m68k_cpu_dump_state(CPUState *cpu, FILE *f, fprintf_function cpu_fprintf, | |
167 | int flags); | |
168 | hwaddr m68k_cpu_get_phys_page_debug(CPUState *cpu, vaddr addr); | |
169 | int m68k_cpu_gdb_read_register(CPUState *cpu, uint8_t *buf, int reg); | |
170 | int m68k_cpu_gdb_write_register(CPUState *cpu, uint8_t *buf, int reg); | |
171 | ||
e1f3808e | 172 | void m68k_tcg_init(void); |
6d1bbc62 | 173 | void m68k_cpu_init_gdb(M68kCPU *cpu); |
e6e5906b PB |
174 | /* you can call this signal handler from your SIGBUS and SIGSEGV |
175 | signal handlers to inform the virtual CPU of exceptions. non zero | |
176 | is returned if the signal was handled by the virtual CPU. */ | |
5fafdf24 | 177 | int cpu_m68k_signal_handler(int host_signum, void *pinfo, |
e6e5906b | 178 | void *puc); |
99c51448 RH |
179 | uint32_t cpu_m68k_get_ccr(CPUM68KState *env); |
180 | void cpu_m68k_set_ccr(CPUM68KState *env, uint32_t); | |
d2f8fb8e | 181 | void cpu_m68k_set_sr(CPUM68KState *env, uint32_t); |
ba624944 | 182 | void cpu_m68k_set_fpcr(CPUM68KState *env, uint32_t val); |
e6e5906b | 183 | |
c3ce5a23 PB |
184 | |
185 | /* Instead of computing the condition codes after each m68k instruction, | |
186 | * QEMU just stores one operand (called CC_SRC), the result | |
187 | * (called CC_DEST) and the type of operation (called CC_OP). When the | |
188 | * condition codes are needed, the condition codes can be calculated | |
189 | * using this information. Condition codes are not generated if they | |
190 | * are only needed for conditional branches. | |
191 | */ | |
9fdb533f | 192 | typedef enum { |
620c6cf6 | 193 | /* Translator only -- use env->cc_op. */ |
7deddf96 | 194 | CC_OP_DYNAMIC, |
620c6cf6 RH |
195 | |
196 | /* Each flag bit computed into cc_[xcnvz]. */ | |
197 | CC_OP_FLAGS, | |
198 | ||
199 | /* X in cc_x, C = X, N in cc_n, Z in cc_n, V via cc_n/cc_v. */ | |
db3d7945 LV |
200 | CC_OP_ADDB, CC_OP_ADDW, CC_OP_ADDL, |
201 | CC_OP_SUBB, CC_OP_SUBW, CC_OP_SUBL, | |
620c6cf6 RH |
202 | |
203 | /* X in cc_x, {N,Z,C,V} via cc_n/cc_v. */ | |
db3d7945 | 204 | CC_OP_CMPB, CC_OP_CMPW, CC_OP_CMPL, |
620c6cf6 RH |
205 | |
206 | /* X in cc_x, C = 0, V = 0, N in cc_n, Z in cc_n. */ | |
207 | CC_OP_LOGIC, | |
208 | ||
209 | CC_OP_NB | |
9fdb533f | 210 | } CCOp; |
e6e5906b PB |
211 | |
212 | #define CCF_C 0x01 | |
213 | #define CCF_V 0x02 | |
214 | #define CCF_Z 0x04 | |
215 | #define CCF_N 0x08 | |
0633879f PB |
216 | #define CCF_X 0x10 |
217 | ||
218 | #define SR_I_SHIFT 8 | |
219 | #define SR_I 0x0700 | |
220 | #define SR_M 0x1000 | |
221 | #define SR_S 0x2000 | |
222 | #define SR_T 0x8000 | |
e6e5906b | 223 | |
20dcee94 PB |
224 | #define M68K_SSP 0 |
225 | #define M68K_USP 1 | |
6e22b28e LV |
226 | #define M68K_ISP 2 |
227 | ||
228 | /* m68k Control Registers */ | |
229 | ||
230 | /* ColdFire */ | |
231 | /* Memory Management Control Registers */ | |
232 | #define M68K_CR_ASID 0x003 | |
233 | #define M68K_CR_ACR0 0x004 | |
234 | #define M68K_CR_ACR1 0x005 | |
235 | #define M68K_CR_ACR2 0x006 | |
236 | #define M68K_CR_ACR3 0x007 | |
237 | #define M68K_CR_MMUBAR 0x008 | |
238 | ||
239 | /* Processor Miscellaneous Registers */ | |
240 | #define M68K_CR_PC 0x80F | |
241 | ||
242 | /* Local Memory and Module Control Registers */ | |
243 | #define M68K_CR_ROMBAR0 0xC00 | |
244 | #define M68K_CR_ROMBAR1 0xC01 | |
245 | #define M68K_CR_RAMBAR0 0xC04 | |
246 | #define M68K_CR_RAMBAR1 0xC05 | |
247 | #define M68K_CR_MPCR 0xC0C | |
248 | #define M68K_CR_EDRAMBAR 0xC0D | |
249 | #define M68K_CR_SECMBAR 0xC0E | |
250 | #define M68K_CR_MBAR 0xC0F | |
251 | ||
252 | /* Local Memory Address Permutation Control Registers */ | |
253 | #define M68K_CR_PCR1U0 0xD02 | |
254 | #define M68K_CR_PCR1L0 0xD03 | |
255 | #define M68K_CR_PCR2U0 0xD04 | |
256 | #define M68K_CR_PCR2L0 0xD05 | |
257 | #define M68K_CR_PCR3U0 0xD06 | |
258 | #define M68K_CR_PCR3L0 0xD07 | |
259 | #define M68K_CR_PCR1U1 0xD0A | |
260 | #define M68K_CR_PCR1L1 0xD0B | |
261 | #define M68K_CR_PCR2U1 0xD0C | |
262 | #define M68K_CR_PCR2L1 0xD0D | |
263 | #define M68K_CR_PCR3U1 0xD0E | |
264 | #define M68K_CR_PCR3L1 0xD0F | |
265 | ||
266 | /* MC680x0 */ | |
267 | /* MC680[1234]0/CPU32 */ | |
268 | #define M68K_CR_SFC 0x000 | |
269 | #define M68K_CR_DFC 0x001 | |
270 | #define M68K_CR_USP 0x800 | |
271 | #define M68K_CR_VBR 0x801 /* + Coldfire */ | |
272 | ||
273 | /* MC680[234]0 */ | |
274 | #define M68K_CR_CACR 0x002 /* + Coldfire */ | |
275 | #define M68K_CR_CAAR 0x802 /* MC68020 and MC68030 only */ | |
276 | #define M68K_CR_MSP 0x803 | |
277 | #define M68K_CR_ISP 0x804 | |
278 | ||
279 | /* MC68040/MC68LC040 */ | |
280 | #define M68K_CR_TC 0x003 | |
281 | #define M68K_CR_ITT0 0x004 | |
282 | #define M68K_CR_ITT1 0x005 | |
283 | #define M68K_CR_DTT0 0x006 | |
284 | #define M68K_CR_DTT1 0x007 | |
285 | #define M68K_CR_MMUSR 0x805 | |
286 | #define M68K_CR_URP 0x806 | |
287 | #define M68K_CR_SRP 0x807 | |
288 | ||
289 | /* MC68EC040 */ | |
290 | #define M68K_CR_IACR0 0x004 | |
291 | #define M68K_CR_IACR1 0x005 | |
292 | #define M68K_CR_DACR0 0x006 | |
293 | #define M68K_CR_DACR1 0x007 | |
20dcee94 | 294 | |
ba624944 LV |
295 | #define M68K_FPIAR_SHIFT 0 |
296 | #define M68K_FPIAR (1 << M68K_FPIAR_SHIFT) | |
297 | #define M68K_FPSR_SHIFT 1 | |
298 | #define M68K_FPSR (1 << M68K_FPSR_SHIFT) | |
299 | #define M68K_FPCR_SHIFT 2 | |
300 | #define M68K_FPCR (1 << M68K_FPCR_SHIFT) | |
301 | ||
302 | /* Floating-Point Status Register */ | |
303 | ||
304 | /* Condition Code */ | |
305 | #define FPSR_CC_MASK 0x0f000000 | |
306 | #define FPSR_CC_A 0x01000000 /* Not-A-Number */ | |
307 | #define FPSR_CC_I 0x02000000 /* Infinity */ | |
308 | #define FPSR_CC_Z 0x04000000 /* Zero */ | |
309 | #define FPSR_CC_N 0x08000000 /* Negative */ | |
310 | ||
311 | /* Quotient */ | |
312 | ||
313 | #define FPSR_QT_MASK 0x00ff0000 | |
314 | ||
315 | /* Floating-Point Control Register */ | |
316 | /* Rounding mode */ | |
317 | #define FPCR_RND_MASK 0x0030 | |
318 | #define FPCR_RND_N 0x0000 | |
319 | #define FPCR_RND_Z 0x0010 | |
320 | #define FPCR_RND_M 0x0020 | |
321 | #define FPCR_RND_P 0x0030 | |
322 | ||
323 | /* Rounding precision */ | |
324 | #define FPCR_PREC_MASK 0x00c0 | |
325 | #define FPCR_PREC_X 0x0000 | |
326 | #define FPCR_PREC_S 0x0040 | |
327 | #define FPCR_PREC_D 0x0080 | |
328 | #define FPCR_PREC_U 0x00c0 | |
329 | ||
330 | #define FPCR_EXCP_MASK 0xff00 | |
331 | ||
20dcee94 PB |
332 | /* CACR fields are implementation defined, but some bits are common. */ |
333 | #define M68K_CACR_EUSP 0x10 | |
334 | ||
acf930aa PB |
335 | #define MACSR_PAV0 0x100 |
336 | #define MACSR_OMC 0x080 | |
337 | #define MACSR_SU 0x040 | |
338 | #define MACSR_FI 0x020 | |
339 | #define MACSR_RT 0x010 | |
340 | #define MACSR_N 0x008 | |
341 | #define MACSR_Z 0x004 | |
342 | #define MACSR_V 0x002 | |
343 | #define MACSR_EV 0x001 | |
344 | ||
cb3fb38e | 345 | void m68k_set_irq_level(M68kCPU *cpu, int level, uint8_t vector); |
20dcee94 | 346 | void m68k_switch_sp(CPUM68KState *env); |
e6e5906b | 347 | |
a87295e8 PB |
348 | void do_m68k_semihosting(CPUM68KState *env, int nr); |
349 | ||
d315c888 PB |
350 | /* There are 4 ColdFire core ISA revisions: A, A+, B and C. |
351 | Each feature covers the subset of instructions common to the | |
352 | ISA revisions mentioned. */ | |
353 | ||
0402f767 | 354 | enum m68k_features { |
f076803b | 355 | M68K_FEATURE_M68000, |
0402f767 | 356 | M68K_FEATURE_CF_ISA_A, |
d315c888 PB |
357 | M68K_FEATURE_CF_ISA_B, /* (ISA B or C). */ |
358 | M68K_FEATURE_CF_ISA_APLUSC, /* BIT/BITREV, FF1, STRLDSR (ISA A+ or C). */ | |
359 | M68K_FEATURE_BRAL, /* Long unconditional branch. (ISA A+ or B). */ | |
0402f767 PB |
360 | M68K_FEATURE_CF_FPU, |
361 | M68K_FEATURE_CF_MAC, | |
362 | M68K_FEATURE_CF_EMAC, | |
d315c888 PB |
363 | M68K_FEATURE_CF_EMAC_B, /* Revision B EMAC (dual accumulate). */ |
364 | M68K_FEATURE_USP, /* User Stack Pointer. (ISA A+, B or C). */ | |
e6dbd3b3 | 365 | M68K_FEATURE_EXT_FULL, /* 68020+ full extension word. */ |
f076803b LV |
366 | M68K_FEATURE_WORD_INDEX, /* word sized address index registers. */ |
367 | M68K_FEATURE_SCALED_INDEX, /* scaled address index registers. */ | |
368 | M68K_FEATURE_LONG_MULDIV, /* 32 bit multiply/divide. */ | |
369 | M68K_FEATURE_QUAD_MULDIV, /* 64 bit multiply/divide. */ | |
370 | M68K_FEATURE_BCCL, /* Long conditional branches. */ | |
371 | M68K_FEATURE_BITFIELD, /* Bit field insns. */ | |
372 | M68K_FEATURE_FPU, | |
373 | M68K_FEATURE_CAS, | |
374 | M68K_FEATURE_BKPT, | |
18059c9e | 375 | M68K_FEATURE_RTD, |
8bf6cbaf | 376 | M68K_FEATURE_CHK2, |
9d4f0429 | 377 | M68K_FEATURE_M68040, /* instructions specific to MC68040 */ |
0402f767 PB |
378 | }; |
379 | ||
380 | static inline int m68k_feature(CPUM68KState *env, int feature) | |
381 | { | |
382 | return (env->features & (1u << feature)) != 0; | |
383 | } | |
384 | ||
9a78eead | 385 | void m68k_cpu_list(FILE *f, fprintf_function cpu_fprintf); |
009a4356 | 386 | |
0402f767 PB |
387 | void register_m68k_insns (CPUM68KState *env); |
388 | ||
e6e5906b | 389 | #ifdef CONFIG_USER_ONLY |
2b04e85a LV |
390 | /* Coldfire Linux uses 8k pages |
391 | * and m68k linux uses 4k pages | |
392 | * use the smaller one | |
393 | */ | |
394 | #define TARGET_PAGE_BITS 12 | |
e6e5906b | 395 | #else |
5fafdf24 | 396 | /* Smallest TLB entry size is 1k. */ |
e6e5906b PB |
397 | #define TARGET_PAGE_BITS 10 |
398 | #endif | |
9467d44c | 399 | |
52705890 RH |
400 | #define TARGET_PHYS_ADDR_SPACE_BITS 32 |
401 | #define TARGET_VIRT_ADDR_SPACE_BITS 32 | |
402 | ||
f47cf4e3 | 403 | #define cpu_init(cpu_model) cpu_generic_init(TYPE_M68K_CPU, cpu_model) |
c7937d9f | 404 | |
f61797bd IM |
405 | #define M68K_CPU_TYPE_SUFFIX "-" TYPE_M68K_CPU |
406 | #define M68K_CPU_TYPE_NAME(model) model M68K_CPU_TYPE_SUFFIX | |
407 | ||
9467d44c | 408 | #define cpu_signal_handler cpu_m68k_signal_handler |
009a4356 | 409 | #define cpu_list m68k_cpu_list |
9467d44c | 410 | |
6ebbf390 JM |
411 | /* MMU modes definitions */ |
412 | #define MMU_MODE0_SUFFIX _kernel | |
413 | #define MMU_MODE1_SUFFIX _user | |
414 | #define MMU_USER_IDX 1 | |
97ed5ccd | 415 | static inline int cpu_mmu_index (CPUM68KState *env, bool ifetch) |
6ebbf390 JM |
416 | { |
417 | return (env->sr & SR_S) == 0 ? 1 : 0; | |
418 | } | |
419 | ||
7510454e | 420 | int m68k_cpu_handle_mmu_fault(CPUState *cpu, vaddr address, int rw, |
97b348e7 | 421 | int mmu_idx); |
aaedd1f9 | 422 | |
022c62cb | 423 | #include "exec/cpu-all.h" |
622ed360 | 424 | |
2b3e3cfe | 425 | static inline void cpu_get_tb_cpu_state(CPUM68KState *env, target_ulong *pc, |
89fee74a | 426 | target_ulong *cs_base, uint32_t *flags) |
6b917547 AL |
427 | { |
428 | *pc = env->pc; | |
429 | *cs_base = 0; | |
ba624944 | 430 | *flags = (env->sr & SR_S) /* Bit 13 */ |
6b917547 AL |
431 | | ((env->macsr >> 4) & 0xf); /* Bits 0-3 */ |
432 | } | |
433 | ||
e6e5906b | 434 | #endif |