translate.c (5e6ebacc3b1e4e8d52a27b9f236fdc01d828641c) translate.c (14776ab5a12972ea439c7fb2203a4c15a09094b4)
1/*
2 * m68k translation
3 *
4 * Copyright (c) 2005-2007 CodeSourcery
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

--- 2400 unchanged lines hidden (view full) ---

2409
2410DISAS_INSN(cas)
2411{
2412 int opsize;
2413 TCGv addr;
2414 uint16_t ext;
2415 TCGv load;
2416 TCGv cmp;
1/*
2 * m68k translation
3 *
4 * Copyright (c) 2005-2007 CodeSourcery
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

--- 2400 unchanged lines hidden (view full) ---

2409
2410DISAS_INSN(cas)
2411{
2412 int opsize;
2413 TCGv addr;
2414 uint16_t ext;
2415 TCGv load;
2416 TCGv cmp;
2417 TCGMemOp opc;
2417 MemOp opc;
2418
2419 switch ((insn >> 9) & 3) {
2420 case 1:
2421 opsize = OS_BYTE;
2422 opc = MO_SB;
2423 break;
2424 case 2:
2425 opsize = OS_WORD;

--- 3919 unchanged lines hidden ---
2418
2419 switch ((insn >> 9) & 3) {
2420 case 1:
2421 opsize = OS_BYTE;
2422 opc = MO_SB;
2423 break;
2424 case 2:
2425 opsize = OS_WORD;

--- 3919 unchanged lines hidden ---